CHANGES 232 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184
  1. 25.2.0
  2. ------
  3. ### Automate Code Mappings & In-App Stack Trace Rules for Java projects (ongoing)
  4. Currently, we ask developers to set up their Java code mappings manually (because the SDK cannot determine it):
  5. https://docs.sentry.io/platforms/java/source-context/#setting-up-code-mappings
  6. Unfortunately, many stack traces do not contain in-app frames, thus, many Sentry features are not available (e.g. SCM linking, suspect commit).
  7. This tracks using the code mappings derivation system to automatically add the code mappings and stack trace rules to mark in-app frames as such.
  8. This will automatically enable the following Sentry features :
  9. - Suspect Commits
  10. - GitHub pull request comments
  11. - Auto-assignments (if Codeowners imported)
  12. - Stack trace linking
  13. - Code coverage (if the customer also has an account)
  14. This will only be available to customers with the GitHub integration installed.
  15. You can read more about the system here:
  16. https://blog.sentry.io/code-mappings-and-why-they-matter/
  17. By: @armenzg (#85174, #85065)
  18. ### Various fixes & improvements
  19. - Revert "feat(autofix): Add Autofix status to sidebar button (#85287)" (b20e50ed) by @getsentry-bot
  20. - fix(autofix): Fix flash on initial run (#85299) by @roaga
  21. - feat(autofix): Add Autofix status to sidebar button (#85287) by @roaga
  22. - fix(issues): Left align commit authors (#85291) by @scttcper
  23. - :sparkles: feat(aci): add support for sentry apps for issue alerts in NOA (#85218) by @iamrajjoshi
  24. - feat(crons): Implement an all checks page for crons (#85202) by @leeandher
  25. - fix(apidocs): fix typo in user feedback api (#85280) by @michellewzhang
  26. - ref(dashboards): Namespaced `Widget` components (#85238) by @gggritso
  27. - ref(uptime): Remove config_topic from UptimeRegionConfig (#85155) by @evanpurkhiser
  28. - ref(seer grouping): Add ability to ignore useless filenames (#85277) by @lobsterkatie
  29. - fix(auto_source_config): Handle when the frame is None (#85235) by @armenzg
  30. - feat(issues): Disable delete on missing permission (#85278) by @scttcper
  31. - fix(widget-builder): Visualize field overflows on long field names (#85271) by @nikkikapadia
  32. - feat(nav): Update rest of alert links to use new pathname builder (#85257) by @malwilley
  33. - fix(profiling): Prevent landing page from scrolling on context menu (#85273) by @Zylphrex
  34. - ref: remove default margin from Alert in sentry (#85128) by @michellewzhang
  35. - feat(taskworker) Add metrics for RPC durations (#85194) by @markstory
  36. - feat(nav): Update alert links from explore/insights/crons (#85254) by @malwilley
  37. - feat(nav): Update replay onboarding to use drawer (#85267) by @malwilley
  38. - ref(crons): Rename parallel field -> batched_parallel (#85261) by @evanpurkhiser
  39. - Reapply "ref(crons): Remove parallel mode (batched-parallel replaced it)" (#85262) by @evanpurkhiser
  40. - ref(widget-builder): Extract selection components (#85248) by @narsaynorath
  41. - chore(apis): Publish GroupExternalIssue endpoint (#85184) by @Christinarlong
  42. - ref: get_group_{body,title,description} to not need request (#85263) by @asottile-sentry
  43. _Plus 1429 more_
  44. 25.1.0
  45. ------
  46. ### Various fixes & improvements
  47. - fix(issues): inherit ShortIdLookupEndpoint from GroupEndpoint (#83502) by @oioki
  48. - feat(widget-builder): Create blank widget preview for templates (#83509) by @nikkikapadia
  49. - fix(eslint): Cleanup some TS cruft in the eslint.config.mjs file (#83468) by @ryan953
  50. - feat(eap): Add has filters to eap search query builder (#83437) by @Zylphrex
  51. - feat(explore): Add is_transaction to explore fields (#83423) by @Zylphrex
  52. - styles(explore): Fix spacing between explore toolbar visualize (#83449) by @Zylphrex
  53. - feat(streamline): Add an option to remove opt-out for new users (#83205) by @leeandher
  54. - ref(issue-details): Remove all query params from legacy UI when no event is found. (#83441) by @leeandher
  55. - Revert "ref(quick-start): Update backend enums names (#83361)" (0729289d) by @getsentry-bot
  56. - feat(symx): Add os as a tag (#83504) by @loewenheim
  57. - ref(quick-start): Update backend enums names (#83361) by @priscilawebdev
  58. - ref: fix type for serializers.models.rule (#83444) by @asottile-sentry
  59. - ref: fix typing for plugins.bases.issue{,2} (#83445) by @asottile-sentry
  60. - ref: standardize user param as User | RpcUser | AnonymousUser in Serializers (#83436) by @asottile-sentry
  61. - Reapply "ref: upgrade to python 3.13" (#83448) by @asottile-sentry
  62. - feat(widget-builder): Add widget dropdown for templates (#83426) by @nikkikapadia
  63. - ref(quick-start): Update comments in onboarding tasks model (#83496) by @priscilawebdev
  64. - ref(quick-start): Remove unused functions (#83499) by @priscilawebdev
  65. - ref(quick-start): Remove 'INTEGRATIONS' from onboarding task (#83488) by @priscilawebdev
  66. - ref(quick-start): Remove 'USER_CONTEXT' from onboarding tasks (#83489) by @priscilawebdev
  67. - ref(quick-start): Remove 'METRIC_ALERT' from onboarding task (#83487) by @priscilawebdev
  68. - ref(quick-start): Add 'default=True' to the flag manager (#83483) by @priscilawebdev
  69. - ref(quick-start): Remove 'USER_REPORTS' from onboarding task (#83490) by @priscilawebdev
  70. - fix(symx): Remove log message (#83491) by @tobias-wilfert
  71. _Plus 26 more_
  72. 24.12.2
  73. -------
  74. ### Various fixes & improvements
  75. - feat(devservices): Add option to setup sentry with new devservices to existing action (#83415) by @hubertdeng123
  76. - ref(react19): Remove various styled defaultProps (#83409) by @scttcper
  77. - feat(new-trace-issues): Updating designs for trace preview in issue details (#83430) by @Abdkhan14
  78. - feat(metric-issues): Add "correlated issues" section (#83353) by @snigdhas
  79. - fix(ui): Clamp timeline zoom to the minute (#83435) by @evanpurkhiser
  80. - fix(eslint): Enable no-constant-binary-expression and fix violations (#83273) by @ryan953
  81. - feat(eap): Support eap autocompleting booleans (#83433) by @Zylphrex
  82. - fix(migrations): Actually fix BoundedPositiveBigIntegerField (#83431) by @wedamija
  83. - ref: delete dead serializer code (#83429) by @asottile-sentry
  84. - feat(ui): List available param keys in useParams (#83428) by @scttcper
  85. - ref: fix types for mentions serializer (#83424) by @asottile-sentry
  86. - :recycle: feat(workflow_engine): issue alert action migration util for slack (#83123) by @iamrajjoshi
  87. - feat(metric-issues): Hide log level indicator for non-error issues (#83354) by @snigdhas
  88. - ref: use types-requests-oauthlib (#83418) by @asottile-sentry
  89. - ref: use types-unidiff (#83416) by @asottile-sentry
  90. - ref(profiling) drop drag and drop functionality (#83420) by @JonasBa
  91. - ref: upgrade django-stubs (#83413) by @asottile-sentry
  92. - chore(alerts): Remove lingering activated alerts code (#83342) by @ceorourke
  93. - chore(analytics): Add experimental analytics for new streamlined orgs (#83390) by @leeandher
  94. - feat(dashboards): Improve duration Y axis label formatting (#83337) by @gggritso
  95. - ref(profiling): Merge profile provider for both modes (#83338) by @Zylphrex
  96. - fix(migrations): Set the correct internal type for BoundedPositiveBigIntegerField (#83412) by @wedamija
  97. - fix: check user in helper (#83407) by @oioki
  98. - fix(widget-builder): Aggregates with no column not wiped (#83410) by @narsaynorath
  99. _Plus 775 more_
  100. 24.12.1
  101. -------
  102. ### Various fixes & improvements
  103. - fix: fixes KeyError when running with stale topic dlq (#82512) by @lynnagara
  104. - chore(issue-views): Add analytics back to tab actions (#82504) by @MichaelSun48
  105. - chore(sentry apps): Introduce new error types for sentry apps (#82507) by @Christinarlong
  106. - fix timezone normalization (#82496) by @kneeyo1
  107. - ref(tsc): convert teamAccessRequestModal to FC (#82470) by @michellewzhang
  108. - ref(tsc): convert dashboardWidgetQuerySelectorModal to FC (#82466) by @michellewzhang
  109. - ref(issue-views): Overhaul issue views state and logic to a new context (#82429) by @MichaelSun48
  110. - ref: strptime -> fromisoformat in tests (#82488) by @asottile-sentry
  111. - chore(various): Fix linter warnings (#82494) by @lobsterkatie
  112. - ref(insights): Split out `getAxisMaxForPercentageSeries` (#82493) by @gggritso
  113. - fix(ecosystem): Track metrics for issue detail ticket creation (#82436) by @GabeVillalobos
  114. - ref(aci): pass WorkflowJob into process_workflows (#82489) by @cathteng
  115. - fix(group-events): Fix typo and error text (#82490) by @leeandher
  116. - fix(web): Add react_config context on auth pages take 2 (#82480) by @BYK
  117. - feat(alerts): ACI dual write alert rule helpers (#82400) by @ceorourke
  118. - feat(dashboards): Pass `LineChart` series meta alongside the data (#82047) by @gggritso
  119. - fix(eap): Numeric attribute filtering in snql eap (#82472) by @Zylphrex
  120. - chore(issues): Opt in a few more endpoint tests to stronger types (#82382) by @mrduncan
  121. - ref: remove calls to iso_format in testutils (#82461) by @asottile-sentry
  122. - feat(dashboards): enable sorting by column in table view (#82239) by @harshithadurai
  123. - ref(workflow_engine): remove remaining references to condition in validators (#82438) by @mifu67
  124. - fix(flags): separate permission class (#82463) by @oioki
  125. - feat(new-trace): Fixing scroll on trace drawer (#82475) by @Abdkhan14
  126. - support routing stale messages to lowpri topic (#82322) by @lynnagara
  127. _Plus 240 more_
  128. 24.12.0
  129. -------
  130. ### Various fixes & improvements
  131. - chore(utils): allow duplicate values in registry by making reverse lookup optional (#82114) by @cathteng
  132. - feat(workflow_engine): Add `process_data_packets` method (#82002) by @saponifi3d
  133. - ref(workflow_engine): Remove DetectorType (#82111) by @saponifi3d
  134. - chore(aci milestone 3): move aggregation value helpers to incidents directory (#82103) by @mifu67
  135. - ref(feedback): remove spam detection logs - replaced by redash (#82071) by @aliu39
  136. - fix(activity): Update activity message for linked issues (#82064) by @snigdhas
  137. - ref(replay): improve error messages for invalid searches that raise CouldNotParseValue (#82048) by @aliu39
  138. - fix(toolbar): Include credentials with fetch requests (#82108) by @ryan953
  139. - feat(autofix): Add support for streamed output (#82024) by @roaga
  140. - :sparkles: feat(discord): add button to redirect for user linking (#82104) by @iamrajjoshi
  141. - feat(workflow_engine): Adding support for `process_workflows` in the IssuePlatform (#81975) by @saponifi3d
  142. - ref: remove skip_for_relay_store (#82106) by @asottile-sentry
  143. - feat(metric-issues): Configure workflow notifications by group type (#81609) by @snigdhas
  144. - fix(iphone-codes): update frontend definitions (#82100) by @armcknight
  145. - ref: improve grouphash_metadata test (#82101) by @asottile-sentry
  146. - fix(iphone-codes): update BE mapping; remove unused method (#82094) by @armcknight
  147. - ref: remove xfail_if_not_postgres (#82097) by @asottile-sentry
  148. - ref: fix typing for endpoints.project_rule_preview (#82089) by @asottile-sentry
  149. - ref: fix types for test_event_attachment_details (#82091) by @asottile-sentry
  150. - ref: remove requires_not_arm64 (#82093) by @asottile-sentry
  151. - chore(aci): enforce config schema without subclassing (#81979) by @cathteng
  152. - ref: fix types for eventstore.test_base (#82092) by @asottile-sentry
  153. - chore(stacktrace): Make source map tooltip aligned (#82016) by @MichaelSun48
  154. - ref: delete unused GroupEnvironmentWithStatsSerializer (#82090) by @asottile-sentry
  155. _Plus 93 more_
  156. 24.11.2
  157. -------
  158. ### Various fixes & improvements
  159. - fix(dashboards): Abbreviate `LineChartWidget` Y axis integers (#81937) by @gggritso
  160. - Revert "chore(profiling): remove profiling.stack_trace_rules.allowed_project_ids option (#81903)" (d0bea1aa) by @getsentry-bot
  161. - feat(widget-builder): Add limit field to widget builder hook (#81944) by @nikkikapadia
  162. - fix(alerts): Fix EAP alert filter bar to behave more like explore (#81946) by @edwardgou-sentry
  163. - feat(alerts): Renames eap metrics in ui to spans (#81917) by @edwardgou-sentry
  164. - feat(alerts): Limits eap alert time windows and periods (#81916) by @edwardgou-sentry
  165. - chore(insights): Remove bundle analysis UI flag (#81932) by @gggritso
  166. - feat(widget-builder): Batch URL param changes (#81923) by @narsaynorath
  167. - fix(merged): Always show a link for latests event of a merged group (#81947) by @leeandher
  168. - fix(dashboards): Add missing propagated props in `LineChartWidget` (#81935) by @gggritso
  169. - chore(profiling): remove profiling.stack_trace_rules.allowed_project_ids option (#81903) by @viglia
  170. - feat(new-trace): remove prefix related (#81918) by @doralchan
  171. - :mag: nit(integration slo): cleanup tests (#81943) by @iamrajjoshi
  172. - ref(widget-builder): Split out tests (#81949) by @narsaynorath
  173. - fix(trace-view): Web Vitals scores (#81945) by @0Calories
  174. - ref(insights): Simplify `SpanTimeCharts` (#81931) by @gggritso
  175. - fix(oauth): only remove the related tokens (#81677) by @sentaur-athena
  176. - :wrench: chore(integration slo): cleaning up tests and use util method (#81936) by @iamrajjoshi
  177. - feat(issue summary): Change 3-dot menu to dropdown (#81928) by @roaga
  178. - feat(sdk): Upgrade @sentry SDKs to v8.43.0 (#81925) by @aliu39
  179. - Better logging for backpressure (#81648) by @kneeyo1
  180. - feat(dashboards): add success message when favoriting dashboards (#81887) by @harshithadurai
  181. - feat(ui): Add dark app loading theme (#81611) by @scttcper
  182. - ref(dashboards): Export Widget component props (#81924) by @gggritso
  183. _Plus 442 more_
  184. 24.11.1
  185. -------
  186. ### Various fixes & improvements
  187. - feat(toolbar): Make the login-success page have styles that blend with the login flow (#81230) by @ryan953
  188. - fix(issues): Revert to app external issue name (#81277) by @scttcper
  189. - Revert "chore(similarity): Do not send > 30 system frames to seer (#81259)" (104352cb) by @getsentry-bot
  190. - :wrench: chore(slos): Update Halt to Success for Bot Commands (#81271) by @iamrajjoshi
  191. - fix(auth): Adding scoping_organization_id to replica (#81213) by @sentaur-athena
  192. - chore(similarity): Do not send > 30 system frames to seer (#81259) by @jangjodi
  193. - fix(issues): Animate dropdown chevrons, button sizes (#81262) by @scttcper
  194. - feat(eap): Add missing profile.id column to EAP (#81263) by @Zylphrex
  195. - ref(dashboards): Modify how permissions are handled for editing/deleting dashboards (#80684) by @harshithadurai
  196. - feat(explore): Format numeric tags nicely in explore (#81255) by @Zylphrex
  197. - fix(explore): Preserve sort when adding group by (#81258) by @Zylphrex
  198. - ref(insights): remove insights-domain-view flag part 1 (#81241) by @DominikB2014
  199. - chore(alerts): Drop included and excluded projects (#81250) by @ceorourke
  200. - ref: fix flaky digests test (#81256) by @asottile-sentry
  201. - chore(sentryapps) Remove option for sentryapp RPC transition (#81245) by @markstory
  202. - fix(grouping): Only collect metadata timing metric when actually getting metadata (#81252) by @lobsterkatie
  203. - chore(performance): Remove old anomaly detection backend (#80696) by @gggritso
  204. - Revert "chore(similarity): Add logging for over 30 system frames (#81130)" (7b7e7955) by @getsentry-bot
  205. - ♻️ chore(slo): SLOs for CommitContextIntegration (#81225) by @iamrajjoshi
  206. - chore(widget-builder): Remove organization props (#81248) by @narsaynorath
  207. - chore(integrations): SourceCodeSearchEndpoint metrics (#80956) by @mifu67
  208. - chore(vsts): vsts installation step metrics (#80789) by @cathteng
  209. - Remove excluded_projects & include_all_projects columns (#81204) by @ceorourke
  210. - fix(issues): Wrap solutions in error boundary (#81244) by @scttcper
  211. _Plus 338 more_
  212. 24.11.0
  213. -------
  214. ### Various fixes & improvements
  215. - feat(issue-details): Add support link to dropdown (#80804) by @roggenkemper
  216. - fix(issues): Show 50+ Replays whenever the count is maxed out like that (#80809) by @ryan953
  217. - ref(replay): Refactor extractDomNodes stepper strategy into extractDomNodes.tsx (#80810) by @ryan953
  218. - ref: make condition_data / action_data param names match for create_project_rule (#80781) by @asottile-sentry
  219. - ref: explicitly install libexpat1 (#80742) by @asottile-sentry
  220. - ref(dashboards): Fixes and refactoring for edit access selector button (#80633) by @harshithadurai
  221. - feat(flamegraphs): Support functions flamegraphs for continuous profi… (#80822) by @Zylphrex
  222. - feature(dashboards): added grid icon (#80806) by @doralchan
  223. - fix(charts): Respect stacked prop in area chart (#80824) by @Zylphrex
  224. - fix(insights): filter out ui.action in backend, and add to mobile (#80823) by @DominikB2014
  225. - chore(flamegraph): Remove transactions from differential flamegraphs (#80807) by @Zylphrex
  226. - feat(functions): Use flamegraph as data source for slowest functions (#80791) by @Zylphrex
  227. - feat(dashboards): Dashboards landing page layout toggle (#80790) by @nikkikapadia
  228. - ref(grouping): Rename `GroupingComponent` to `BaseGroupingComponent` (#80725) by @lobsterkatie
  229. - feat(dynamic-sampling): Show project as active if not 100 percent (#80819) by @ArthurKnaus
  230. - feat(dynamic-sampling): Copy changes and doc links (#80818) by @ArthurKnaus
  231. - fix(releases): For semver releases, get latest release as the resolving one (#80737) by @armenzg
  232. - feat(dynamic-sampling): Use new span count endpoint (#80732) by @ArthurKnaus
  233. - feat(dynamic-sampling): Show stored span per sub-project (#80816) by @ArthurKnaus
  234. - fix(dynamic-sampling): set dynamic sampling project span count mql query limit (#80812) by @shellmayr
  235. - chore(codeowners): update telemetry experience ownership (#80813) by @shellmayr
  236. - fix(crons): Move limit back onto QuerySet for incident detection (#80805) by @evanpurkhiser
  237. - fix(grouping): Small types fixes (#80724) by @lobsterkatie
  238. - feat(backup): Add export checkpointer (#80711) by @azaslavsky
  239. _Plus 1276 more_
  240. 24.10.0
  241. -------
  242. ### Various fixes & improvements
  243. - feat(releases): Split release commit from shared component (#78538) by @scttcper
  244. - chore(alerts): Add info log when sending subscription update data to Seer (#79049) by @ceorourke
  245. - feat(anomaly detection): add preview chart to new alert form (#78238) by @natemoo-re
  246. - feat(issue-stream): Use stacked primary secondary counts designs (#79070) by @MichaelSun48
  247. - feat(alerts): Add new feature flag to enable EAP alerts (#78985) by @edwardgou-sentry
  248. - feat(discover): Update EAP dataset and entity key for discover builders (#78967) by @edwardgou-sentry
  249. - fix: add info to post process TypeErrors for debugging (#79099) by @mjq
  250. - ref(ingest): annotate transaction consumer with spans (#79101) by @mjq
  251. - ref(rr6): Replace many useRouter's with useNavigate's (#78804) by @evanpurkhiser
  252. - chore(feedback): Analytics for error rendering feedback item (#78978) by @c298lee
  253. - feat(explore): Linking to spans in traceview from all tables (#78984) by @Abdkhan14
  254. - fix(eap): Count takes arg (#79066) by @Zylphrex
  255. - feat(quick-start): Add analytics code to the backend to track quick start completion (#79089) by @priscilawebdev
  256. - feat(quick-start): Add new feature flag for the new updates (#79094) by @priscilawebdev
  257. - fix(dashboard): OnDemand widget creation also includes transaction type (#79059) by @narsaynorath
  258. - fix(dashboard): OnDemand extraction for Transaction widgets (#79055) by @narsaynorath
  259. - feat(quick-start): Add analytics code to the frontend to track quick start completion (#79092) by @priscilawebdev
  260. - ref(quick-start): Update 'project to set up' logic to default to the first project (#78460) by @priscilawebdev
  261. - ref(onboarding): Add pnpm to express js install step (#79093) by @priscilawebdev
  262. - feat(dynamic-sampling): add feature flag (#79084) by @constantinius
  263. - fix(loader): Catch errors in `sentryOnLoad` separately (#78993) by @mydea
  264. - ref(feedback): 401 for unauth'd POSTs to projectUserReports (#79069) by @aliu39
  265. - fix(issue-stream): reduce font size of events and user counts (#79028) by @MichaelSun48
  266. - fix(issue-stream): Fix bug where replay divider was shown despite no replays (#79068) by @MichaelSun48
  267. _Plus 1020 more_
  268. 24.9.0
  269. ------
  270. ### Various fixes & improvements
  271. - fix(custom-views): Align hover state of overflow menu with add view button (#77526) by @MichaelSun48
  272. - fix(issues): Align streamlined event id (#77529) by @scttcper
  273. - fix(similarity): Return failure reason from multithread seer call (#77522) by @jangjodi
  274. - test(performance): Rearrange trace keyboard test (#77519) by @scttcper
  275. - fix(anomaly detection): get aggregation key from snuba data (#77498) by @mifu67
  276. - fix(ui): Remove team slug from settings search (#77520) by @scttcper
  277. - fix(issues): Fix incorrect API docs for statsPeriod (#77523) by @mrduncan
  278. - analytics(flags): add initial analytics (#77489) by @michellewzhang
  279. - chore(users): Move User base endpoint file to users directory (#77501) by @Christinarlong
  280. - chore(apidocs): Fix inconsistencies in replay docs (#77506) by @isabellaenriquez
  281. - chore(apidocs): id -> ID (#77505) by @isabellaenriquez
  282. - fix(onboarding): Open replay panel in quick start action (#77516) by @scttcper
  283. - fix(anomaly detection): update alert list status to be the same as details page (#77500) by @mifu67
  284. - ref(js): Remove default export of DateTime (#77493) by @evanpurkhiser
  285. - chore(similarity): Increase seer delay and add to log (#77474) by @jangjodi
  286. - chore(apidocs): Make UserRole related endpoints private (#77504) by @isabellaenriquez
  287. - fix(custom-views): Change cursor for tab to pointer everywhere (#77513) by @MichaelSun48
  288. - ref: fix test pollution integrity errors due to cache leaks between tests (#77476) by @asottile-sentry
  289. - chore(crons): Remove sentry monitor decorator from run_escalating_forcast job (#77499) by @MichaelSun48
  290. - ref(js): Missed one DateTime defualt export (#77497) by @evanpurkhiser
  291. - feat(flags): hide flags from context and add feedback button (#77488) by @michellewzhang
  292. - publish api endpoints (#77179) by @nhsiehgit
  293. - ref(js): Remove usage of DateTime default export (#77494) by @evanpurkhiser
  294. - fix(ui): Inmprove spacing on code snippet header (#77492) by @evanpurkhiser
  295. _Plus 853 more_
  296. 24.8.0
  297. ------
  298. ### Various fixes & improvements
  299. - style(toolbar): adjust alert indicator css (#76189) by @michellewzhang
  300. - fix(issue-summary): Word break on code (#76217) by @jennmueng
  301. - fix(issue-details): Prevent event error section from showing up if no errors (#76235) by @roggenkemper
  302. - nit(scm): group functions by class they come from in main integration class (#76240) by @cathteng
  303. - chore(migrations): Generalize the migrations_added file filter (#76244) by @wedamija
  304. - chore(explore): Add new referrer for explore in events (#76256) by @Zylphrex
  305. - ref(explore): Use sort type from discover (#76220) by @Zylphrex
  306. - misc(deps): Bump the versions of a few google packages (#76257) by @colin-sentry
  307. - chore(slack): temporarily track snuba user count queries round 2 (#76216) by @cathteng
  308. - feat(breadcrumbs): Fix breadcrumbs styles + navigation (#76207) by @leeandher
  309. - feat(features) Use dataclasses for flagpole instead of pydantic (#75859) by @markstory
  310. - ref(similarity): Manually filter times seen in backfill query (#76188) by @jangjodi
  311. - feat(insights): implement geo region selector in web vitals and assets (#76185) by @DominikB2014
  312. - chore(dashboards): Register feature for auto sized Big Number widgets (#76205) by @gggritso
  313. - feat(profiling) add function metrics table (#76110) by @JonasBa
  314. - fix(self-hosted): SOURCE_COMMIT (#76139) by @joshuarli
  315. - Don't emit Sentry warnings for throttled queries to Snuba (#75879) by @xurui-c
  316. - chore(uptime): Switch result consumer duration/delay stats to use distribition (#76237) by @wedamija
  317. - chore: Bump React error codes cache TTL to 3 days (#76243) by @dashed
  318. - chore(uptime): Bump ACTIVE_FAILURE_THRESHOLD to 3 (#76218) by @wedamija
  319. - fix(alert): Correct url (#76236) by @schew2381
  320. - fix(uptime): Always pass span_id from check result to occurrence (#76227) by @evanpurkhiser
  321. - ref(replay): update missing replay alert to include ad blocker note (#76215) by @michellewzhang
  322. - Revert "fix(breadcrumbs): Use subgrid to align log levels (#76148)" (d08c8050) by @getsentry-bot
  323. _Plus 1113 more_
  324. 24.7.1
  325. ------
  326. ### Hierarchical grouping deprecation (ongoing)
  327. This project will move any projects using the mobile grouping configuration as defined here:
  328. https://github.com/getsentry/sentry/blob/44d816f0b9a9450fdf47136313b3a4b955ceab84/src/sentry/grouping/strategies/configurations.py#L160-L188
  329. By: @armenzg (#74203)
  330. ### Various fixes & improvements
  331. - chore(data-secrecy): FF for Data Secrecy (#74749) by @iamrajjoshi
  332. - feat(utils): Add core `CircuitBreaker` functionality (#74560) by @lobsterkatie
  333. - fix(replay): fix new banner check for hydration errors (#74755) by @aliu39
  334. - fix: split samples by threadid (#74738) by @JonasBa
  335. - Allow AI to be nullable (#74746) by @colin-sentry
  336. - Fix creating crash free session alerts (#74750) by @saponifi3d
  337. - feat(utils): Add helpers for circuit breaker and circuit breaker tests (#74559) by @lobsterkatie
  338. - chore(typing): stricter decorator type checking for leaky bucket (#74687) by @vartec
  339. - feat(uptime): Bump default timeout for onboarding monitors to 10s (#74739) by @wedamija
  340. - chore(similarity): Add seer failure reason to backfill log (#74735) by @jangjodi
  341. - fix(insights): Cache page alert re-rendering (#74737) by @narsaynorath
  342. - chore(saml2): Add flag for Single-Logout (#74736) by @leedongwei
  343. - chore(seer): Add timing metric to requests to Seer (#74688) by @lobsterkatie
  344. - feat(utils): Add stub for rate-limit-based `CircuitBreaker` class (#74557) by @lobsterkatie
  345. - Separates rejecting policy and throttling policy in Sentry tags and spans (#74733) by @xurui-c
  346. - feat(tracing): reparent ssr spans under pageload txn and under browser request span (#74675) by @JonasBa
  347. - ref(toolbar): add feature flag search (#74697) by @michellewzhang
  348. - remove temporary flagpole option (#74597) by @nhsiehgit
  349. - chore(issues): cleanup old issue annotations (#74684) by @oioki
  350. - ref: improve signatures of tsdb (#74725) by @asottile-sentry
  351. - feat(performance): enable long animation frame support for internal t… (#74637) by @KevinL10
  352. - fix(metrics): Introduce new styles to alias field (#74722) by @priscilawebdev
  353. - feat(dashboards): Add split source field to API response (#74717) by @narsaynorath
  354. - ref: fix Future types for sentry_metrics routing_producer (#74682) by @asottile-sentry
  355. _Plus 296 more_
  356. 24.7.0
  357. ------
  358. ### Hierarchical grouping deprecation (ongoing)
  359. This project will move any projects using the mobile grouping configuration as defined here:
  360. https://github.com/getsentry/sentry/blob/44d816f0b9a9450fdf47136313b3a4b955ceab84/src/sentry/grouping/strategies/configurations.py#L160-L188
  361. By: @armenzg (#74144)
  362. ### Various fixes & improvements
  363. - chore(api): Rewrite Org Details docs (#73293) by @isabellaenriquez
  364. - metrics(replay): log rrweb_event_count to slow clicks table (#74277) by @aliu39
  365. - fix(slack): Fix error handling when fetching slack channel information (#74267) by @dashed
  366. - chore(replay): alpha -> beta (#74279) by @michellewzhang
  367. - feat(trace-view): Add UI fallback to old view for STs (#73684) by @k-fish
  368. - chore(similarity): Add killswitches for each feature flag (#74274) by @jangjodi
  369. - feat(prompts): support a visible status for un-hiding components (#74228) by @aliu39
  370. - nit(opsgenie): add config access requirement to error text (#74111) by @mifu67
  371. - ref(similarity): Add killswitch to delete record task (#74212) by @jangjodi
  372. - ref(profiling) battery usage chart (#74273) by @JonasBa
  373. - ref(discover): Use snake case for dataset variable (#74215) by @narsaynorath
  374. - ref(proguard): Deobfuscate view hierarchies as part of symbolication (#74196) by @loewenheim
  375. - feat(profiling) construct profile from continuous chunk (#74171) by @JonasBa
  376. - ref(profiling) store unit on profile chart (#74152) by @JonasBa
  377. - ref(metrics): Update copies (#74270) by @priscilawebdev
  378. - ref(proguard): Remove separate queue (#74269) by @loewenheim
  379. - ref(metrics): Update copies (#74268) by @priscilawebdev
  380. - Revert "ref(proguard): Remove separate queue (#74198)" (a1ab12d0) by @getsentry-bot
  381. - ref(proguard): Remove separate queue (#74198) by @loewenheim
  382. - feat(metrics): numeric span attribute extraction (#74190) by @obostjancic
  383. - feat(metrics): update extraction rule tag description (#74118) by @obostjancic
  384. - fix(minimetrics): skip span attribute attach if there is no span (#74193) by @obostjancic
  385. - feat(auto-import): Enable default vscode auto-import for Sentry BE (#74197) by @MichaelSun48
  386. - fix: fix broken links to Performance docs pages (#74235) by @mjq
  387. _Plus 911 more_
  388. 24.6.0
  389. ------
  390. ### Various fixes & improvements
  391. - ref: upgrade boto3 (#72935) by @asottile-sentry
  392. - feat(related_issues): Free tier support for trace timeline and related issues (#72933) by @armenzg
  393. - ref(keyvaluedata): Change names and exports for better autocomplete (#72939) by @leeandher
  394. - feat(issues): adds backend for "resolve in upcoming release" (#70990) by @roggenkemper
  395. - feat(breadcrumbs): Implement shared timeline component (#72874) by @leeandher
  396. - ref(slack): Refactor Link Identity View (#72792) by @iamrajjoshi
  397. - chore(rules): Remove metric alert ignore archived flag (#72833) by @ceorourke
  398. - feat(query-builder): Add loading state and improved menu styles/positioning (#72940) by @malwilley
  399. - fix: Improve trimming of Swift function names (#72335) by @Steelskin
  400. - fix(query-builder): Remove [me,my_teams,none] suggestion from assigned (#72915) by @malwilley
  401. - feat(query-builder): Make date filters more user friendly (#72911) by @malwilley
  402. - fix(compact-select): Prevent CompactSelect from stealing focus back to itself after clicking into another element (#72883) by @malwilley
  403. - fix(spans): Return all queried span tags (#72937) by @Zylphrex
  404. - chore(rrweb): bump rrweb ver to 2.23.0 (#72936) by @michellewzhang
  405. - fix(replay): Fix error state quickly flashing when loading replay (#72823) by @billyvg
  406. - feat(am2): Add project to the blended sample rate function (#72900) by @wmak
  407. - Revert "perf(trace-explorer): Service Entry spans always have group 0 (#72817)" (9ebd80d3) by @getsentry-bot
  408. - feat(insights): add has_insights_xx span project flags (#72904) by @KevinL10
  409. - chore(hybridcloud) Merge frontend-domains feature into multi-region (#72714) by @markstory
  410. - fix(ui) Fix broken redirect on org rename (#72906) by @markstory
  411. - ref: fix types for integrations tasks (#72898) by @asottile-sentry
  412. - ref: fix types for various tasks (#72899) by @asottile-sentry
  413. - ref: remove unused utils.canonical (#72774) by @asottile-sentry
  414. - ref: fix types in org provisioning (#72896) by @asottile-sentry
  415. _Plus 659 more_
  416. 24.5.1
  417. ------
  418. ### Various fixes & improvements
  419. - ref(messaging): Removing Integration Namespace Imports (#72033) by @iamrajjoshi
  420. - ref(js): Fix a few biome warnings (#72048) by @evanpurkhiser
  421. - feat(insights): show update SDK banner cache module (#72015) by @DominikB2014
  422. - fix(spanMetrics): Don't mark avg as a percentile (#72046) by @wmak
  423. - fix(new-trace): Fixing scrollbar offset. (#72029) by @Abdkhan14
  424. - ref: fix types for sentry.utils.snowflake (#72019) by @asottile-sentry
  425. - fix(contexts): Fix casing for known context (#72045) by @leeandher
  426. - fix(related_issues): Prevent race condition (#72036) by @armenzg
  427. - fix(traceview): Allow raw text on additional data when set (#72038) by @leeandher
  428. - fix(insights): Fix flag name in Spans tab UI (#72039) by @0Calories
  429. - ref(test): Remove location from context (#72028) by @evanpurkhiser
  430. - feat(traces): Use new slice quantization from backend (#72034) by @k-fish
  431. - fix(context): Address a few small context bugs (#72013) by @leeandher
  432. - feat(self-hosted): Errors only self-hosted sidebar (#72012) by @hubertdeng123
  433. - fix(relocation): Clean up relocation serializer (#71930) by @azaslavsky
  434. - ref: remove wrapping RawEvent payload with CanonicalKeyView (#72010) by @asottile-sentry
  435. - feat(similarity): Add read only flag to NN endpoint (#72021) by @jangjodi
  436. - feat(remote-config): Add proxy endpoint for configurations (#71773) by @cmanallen
  437. - chore(login): update the login banners (#72027) by @pevensentry
  438. - fix(similarity): use get_primary_hash in backfill (#72022) by @JoshFerge
  439. - feat(empty-states): Update arcade for issue stream empty state (#72024) by @roggenkemper
  440. - Revert "ref(replays): update videoReplayer code to match new rrweb logic & bump rrweb version (#71875)" (7ed3a135) by @getsentry-bot
  441. - feat(profileHours): Add profile hours to org stats (#71882) by @scttcper
  442. - feat(contexts): Add laravel as known platform context (#72008) by @leeandher
  443. _Plus 786 more_
  444. 24.5.0
  445. ------
  446. ### Various fixes & improvements
  447. - Revert "fix(staff): Prevent fetching authenticators before preloading (#70938)" (2d7dcff0) by @getsentry-bot
  448. - feat(metrics): Add custom metrics banner (#70946) by @matejminar
  449. - feat(metrics): Register guide (#70948) by @matejminar
  450. - chore(issues): Add flag for resolve in upcoming release (#70898) by @roggenkemper
  451. - chore(generic-metrics): Add new options to toggle dropping percentiles (#70889) by @ayirr7
  452. - fix(slack): don't raise RuntimeError if unable to fetch property in slack request (#67798) by @cathteng
  453. - Revert "nit: Remove authenticators from state (#70365)" (c946f52a) by @getsentry-bot
  454. - feat(performance): Adds error rate to queues module (#70883) by @edwardgou-sentry
  455. - feat(related_issues): Support passing an event_id to the endpoint (#70878) by @armenzg
  456. - dev(similarity): add more telemetry to backfill (#70947) by @JoshFerge
  457. - fix(issues): Fix missing retries configuration (#70907) by @mrduncan
  458. - chore(metrics): rollout feature flag (#70940) by @obostjancic
  459. - feat(trace-explorer): Supports metrics min/max (#70920) by @Zylphrex
  460. - feat(performance): queues module table sorting (#70817) by @edwardgou-sentry
  461. - feat(metrics): Default custom metric + dismiss empty state (#70936) by @matejminar
  462. - ref: improve devimports test (#70926) by @asottile-sentry
  463. - ref(insights): abstract ScreenLoadSpanSamples side panel for mobile modules (#70890) by @KevinL10
  464. - fix(staff): Prevent fetching authenticators before preloading (#70938) by @schew2381
  465. - fix(api): Update Endpoint so it Returns 404 as a `status_code` (#70918) by @iamrajjoshi
  466. - Hook up `peanutbutter` as an LPQ backend (#69187) by @Swatinem
  467. - ref(insights): Declare module base URLs as constants (#70861) by @gggritso
  468. - fix(metrics): copy code location (#70932) by @obostjancic
  469. - chore(metrics): remove meta datetime param (#70928) by @obostjancic
  470. - ci: reduce time running codecov (#70885) by @giovanni-guidini
  471. _Plus 747 more_
  472. 24.4.2
  473. ------
  474. ### Related Issues - V1 (ongoing)
  475. This will include same-root and trace-connected issues.
  476. By: @armenzg (#69670, #69693, #69237)
  477. ### Various fixes & improvements
  478. - feat(traces): Add multiple queries for trace search (#69929) by @k-fish
  479. - feat(api-idorslug): Rename Path paramaters to `project_id_or_slug` (#69716) by @iamrajjoshi
  480. - ref(rules): Handle action match in delayed rule processor (#69797) by @ceorourke
  481. - ref(crons): Improve typing on MONITOR_CODEC (#69919) by @evanpurkhiser
  482. - reF(ui): Use Link component for performance/cache/tables/transactionCell (#69906) by @evanpurkhiser
  483. - feat(replay): Refetch the viewed-by data after an update to it (#69357) by @ryan953
  484. - fix: no attribute error (#69908) by @nhsiehgit
  485. - feat(user): Add option to only return verified emails from verify_user_emails (#69812) by @davidenwang
  486. - ref(py): Update monitor_consumer to handle FilteredPayload (#69904) by @evanpurkhiser
  487. - ref: fix BytesWarning in last_seen_updater (#69909) by @asottile-sentry
  488. - ref(crons): Remove decode compat code (#69905) by @evanpurkhiser
  489. - ref(app-starts): Generalize screen table component (#69839) by @narsaynorath
  490. - ref(profiling): preserve colors when highlighting (#69912) by @JonasBa
  491. - fix(trace): track data quality from frontend (#69907) by @JonasBa
  492. - fix(project-release): POST should not call Snuba (#69831) by @sentaur-athena
  493. - fix(trace): use the same resize icon (#69869) by @JonasBa
  494. - feat(ui): Remove lazy renderer component prop (#69823) by @scttcper
  495. - ref(js): Use Link component in spanDescriptionLink (#69897) by @evanpurkhiser
  496. - feat(ui): Tag sentry events with concurrent mode (#69819) by @scttcper
  497. - ref: maxminddb module is always available, GEOIP_PATH_MMDB attr always present (#69902) by @asottile-sentry
  498. - fix(trace): remove click outside (#69862) by @JonasBa
  499. - ref(ui): Use Link component in performance http/tables/transactionCell (#69891) by @evanpurkhiser
  500. - ref(ui): Use Button for "Change Photo" (#69901) by @evanpurkhiser
  501. - feat(crons): Add ability dispatch clock ticks to kafka (#69896) by @evanpurkhiser
  502. _Plus 478 more_
  503. 24.4.1
  504. ------
  505. ### Various fixes & improvements
  506. - ref(search): normalize parsed values (#69198) by @JonasBa
  507. - deps(ui): Upgrade webpack dev server, terser (#69150) by @scttcper
  508. - chore(hc): Handles sentry app permission check where org is not found (#69175) by @GabeVillalobos
  509. - chore(feature): Clean up released features that use `OptionBackedRolloutFeatureHandler` in getsentry (#69168) by @wedamija
  510. - feat(crons): Send assignee to issue platform (#69160) by @wedamija
  511. - ref(profiling): add deny list check when ingesting function metrics for a given project (#69180) by @viglia
  512. - ref(replays): show network tab under ff (#69171) by @michellewzhang
  513. - feat: Add Activated Alert Rules to alert rule index (#69124) by @nhsiehgit
  514. - Feat: Enable activated alert creation via alert rule form (#68959) by @nhsiehgit
  515. - test(ui): Add test for GH-69143 (#69149) by @evanpurkhiser
  516. - fix(issues): Fix title of unlabeled errors (#69195) by @matejminar
  517. - feat(trace): add shortcuts button (#69188) by @JonasBa
  518. - ref(trace): fix formatter (#69185) by @JonasBa
  519. - fix(grid-editable): adjust resizer height (#69190) by @obostjancic
  520. - ref(search) case insensitive grammar (#69146) by @JonasBa
  521. - fix(consumers): Handle passed in cluster overrides (#69112) by @rgibert
  522. - ref(related_issues): Minor code refactoring before feature work (#69137) by @armenzg
  523. - Enable queries using project slug as filter and groupby in Metrics API (#69111) by @shellmayr
  524. - feat(perf): Minor fixes to Requests view I (#69156) by @gggritso
  525. - fix(ddm): Add message to the block metric confirm modal (#69184) by @matejminar
  526. - feat(combo-box): Make it feel more like a select (#69087) by @ArthurKnaus
  527. - chore(replay): add ff for enabling network tab for mobile replays (#69166) by @michellewzhang
  528. - ref(replay): Cleanup old session-replay-trace-table experiment (backend) (#68822) by @ryan953
  529. - feat: improved user auth tokens (#68148) by @mdtro
  530. _Plus 182 more_
  531. 24.4.0
  532. ------
  533. ### Various fixes & improvements
  534. - Revert "ref(stories): Collapse `app` root (#68939)" (13dcc607) by @getsentry-bot
  535. - feat(ui): Add `actor` to delegating Avatar component (#68933) by @evanpurkhiser
  536. - ref(ui): Consolidate TeamBadge (#68927) by @evanpurkhiser
  537. - ref(stories): Improve types on TreeMapping (#68940) by @evanpurkhiser
  538. - ref(stories): Collapse `app` root (#68939) by @evanpurkhiser
  539. - feat(perf): Use `@sentry/status-page-list` for domain status link (#68899) by @gggritso
  540. - deps(ui): Update react-router to latest v3, create-react-class (#68926) by @scttcper
  541. - fix(trace): fix drawer bg color (#68934) by @JonasBa
  542. - feat(issue-details): Revise Context UI behind feature flag (#68081) by @leeandher
  543. - Revert "feat(replay): Persist has-viewed state to the server when replays are seen (#68743)" (ad312261) by @getsentry-bot
  544. - feat(perf): Bump "Requests" module from "Alpha" to "Beta" (#68930) by @gggritso
  545. - feat(perf): Adjust HTTP sample table column widths (#68901) by @gggritso
  546. - chore(self-hosted): 24.3.0 release tests (#67091) by @hubertdeng123
  547. - deps(ui): Remove react-test-renderer (#68929) by @scttcper
  548. - fix(trace): fix text overlaps (#68928) by @JonasBa
  549. - fix(replay): Fix canvas replays when seeking without actively playing (#68646) by @billyvg
  550. - fix(perf): Link Response module domains to a specific project (#68905) by @gggritso
  551. - chore(issues): Remove legacy browser flag from BE (#67717) by @leeandher
  552. - ref(uI): Cleanup unused ts-ignore after update (#68924) by @scttcper
  553. - fix(replay): Fixes type error if same param is in url (#68851) by @c298lee
  554. - fix(bug): logging bug (#68919) by @ykamo001
  555. - fix(crons): Update slug in quotas when deleting monitors (#68917) by @evanpurkhiser
  556. - chore(relocation): Add server-side Sentry capture logging (#68906) by @azaslavsky
  557. - feat(replays): Delete videos on replay delete request (#68463) by @cmanallen
  558. _Plus 1311 more_
  559. 24.3.0
  560. ------
  561. ### Various fixes & improvements
  562. - ref(rules): Translate int minutes to words (#67021) by @ceorourke
  563. - fix(rate_limits): Remove special rate limits for group_index (#66730) by @volokluev
  564. - fix(replays): Drop and log click events with negative node-ids (#66993) by @cmanallen
  565. - ref: fix typing in sentry.testutils.factories (#67046) by @asottile-sentry
  566. - fix(discord): Add more unactionable status codes to ignore from slo (#66903) by @17hogeju
  567. - fix(hybridcloud) Deliver payloads concurrently (#66870) by @markstory
  568. - fix(tests): skip flaky test (#67047) by @scefali
  569. - ref(escalating): Remove TODOs from forecast task (#66889) by @jangjodi
  570. - feat(replays): move full replay button (#67014) by @scefali
  571. - fix(webvitals): drop fid column from page overview samples table (#66998) by @edwardgou-sentry
  572. - ref: remove unused strip_toplevel from safe_extract_zip (#67011) by @asottile-sentry
  573. - chore(hybridcloud) Remove outbox based webhooks (#66158) by @markstory
  574. - chore(processing) remove unused settings (#66967) by @markstory
  575. - feat(metric-stats): Add metric_stats generic metrics namespace (#66955) by @Dav1dde
  576. - feat(metrics): Add React Native onboarding (#66960) by @krystofwoldrich
  577. - feat(metrics): Add metrics onboarding for Android and Java (#67033) by @markushi
  578. - perf: add tracing to nodestore (#67002) by @anonrig
  579. - ref(projconfig): Fix typo in instrumentation in span op (#67035) by @iker-barriocanal
  580. - fix: disallow inviting Admin user if team-level roles are enabled (#66836) by @oioki
  581. - ref(projconfigs): Add more instrumentation (#66957) by @iker-barriocanal
  582. - feat(ddm): Add custom_metrics_access organization flag (#66953) by @iambriccardo
  583. - chore(ddm): add sidebar item flag (#66951) by @obostjancic
  584. - fix(issue-priority): Remove box shadow from priority dropdown (#67031) by @malwilley
  585. - ref(replay/issues): link full replay to errors tab from rage click issue (#67030) by @michellewzhang
  586. _Plus 1307 more_
  587. 24.2.0
  588. ------
  589. ### Various fixes & improvements
  590. - Revert "build: update redis and remove redis-py-cluster (#64711)" (c699781d) by @getsentry-bot
  591. - rename issue_alert creators (#65207) by @nhsiehgit
  592. - ref(similarity-embedding): Move log (#65243) by @jangjodi
  593. - build: update redis and remove redis-py-cluster (#64711) by @anonrig
  594. - feat(metrics_extraction): user_misery to fall back to Discover (#65232) by @armenzg
  595. - build: optimize extract-ios-device-names command (#65112) by @anonrig
  596. - feat(trace): prevent back forward navigation (#65244) by @JonasBa
  597. - feat(metrics): Support basic spans metrics examples (#65119) by @Zylphrex
  598. - ref(similar-embeddings): Add shouldBeGrouped to diff analytics (#65235) by @jangjodi
  599. - chore(issues): Revert-revert of deleting streamline-targeting-context (#65160) by @leeandher
  600. - ref: use decode_responses=False for raw=True redis cache (#64885) by @asottile-sentry
  601. - fix(profiling): fix measurement chart messaging (#65237) by @JonasBa
  602. - ref: replace trivial uses of utcnow with tz-aware now (#65085) by @asottile-sentry
  603. - feat(hybridcloud) Add a metric for webhook saves (#65185) by @markstory
  604. - feat(ddm): sample tooltip prefix (#65230) by @obostjancic
  605. - fix(relay): Increase project config timeout (#65229) by @jjbayer
  606. - fix(ddm): Add op to series name (#65231) by @ArthurKnaus
  607. - chore(dashboards): remove inline widget editor (#65166) by @obostjancic
  608. - feat(ddm): Prefix multi query series names (#65222) by @ArthurKnaus
  609. - fix(ddm): Remove connected nulls (#65221) by @ArthurKnaus
  610. - chore(stats): remove metrics (#65220) by @obostjancic
  611. - feat(platforms): Add platform deno in BE (#65218) by @ArthurKnaus
  612. - feat(ddm): Multi query chart (#65217) by @ArthurKnaus
  613. - chore(dashboards): remove custom metrics from widget builder (#65156) by @obostjancic
  614. _Plus 207 more_
  615. 24.1.2
  616. ------
  617. ### Various fixes & improvements
  618. - ref(api): Make processing team endpoints private (#63939) by @loewenheim
  619. - feat(issue-priority): Add priority column to issue stream (#64820) by @malwilley
  620. - Revert "ref: upgrade hiredis (#64789)" (782b0f44) by @getsentry-bot
  621. - feat(issue-details): Show static replay when error is not within the replay (#64827) by @malwilley
  622. - ref(sdk): Remove excessive json.loads spans (#64883) by @k-fish
  623. - fix(integrations): phabricator host validation (#64882) by @oioki
  624. - feat(integrations): Autofill project in selector after project creation modal (#64791) by @roggenkemper
  625. - ref(replay): remove 'new' badge from selector widgets & tab (#64848) by @michellewzhang
  626. - fix(replays): check before attempting to load in onboarding doc (#64842) by @michellewzhang
  627. - fix(ddm): Handle all and my projects (#64877) by @ArthurKnaus
  628. - ref: upgrade hiredis (#64789) by @asottile-sentry
  629. - fix(replays): Move code requiring exception-prone variables into try block (#64658) by @cmanallen
  630. - Sprinkle some tracing around more `save_event` functions (#64869) by @Swatinem
  631. - fix(ddm): Focused series backwards compatibility (#64868) by @ArthurKnaus
  632. - ref: Add option to throttle proguard processing (#64866) by @loewenheim
  633. - ref(similarity-embeddings): Remove unused organization level flag (#64815) by @jangjodi
  634. - ref: upgrade psycopg2-binary (#64809) by @asottile-sentry
  635. - fix(ddm): Global loading state on zoom (#64861) by @ArthurKnaus
  636. - fix(ddm): project param rename (#64860) by @obostjancic
  637. - fix(ddm): Clicking chart hides tooltip (#64859) by @ArthurKnaus
  638. - feat(ddm): Multiple focused series (#64855) by @ArthurKnaus
  639. - feat(ddm): Add new metrics/query endpoint base code (#64785) by @iambriccardo
  640. - feat(stats): metrics stats (#64790) by @obostjancic
  641. - ref(feedback): add analytics for mark as spam buttons (#64850) by @michellewzhang
  642. _Plus 606 more_
  643. 24.1.1
  644. ------
  645. ### Various fixes & improvements
  646. - feat(issue-details): Add URL and breadcrumbs sidebar to issue replay when in fullscreen mode (#63920) by @malwilley
  647. - ref(open-pr-comments): include affected users in javascript comments (#63909) by @cathteng
  648. - fix(ai-ml): Fix ai feature PII check for isStaff users (#63958) by @jennmueng
  649. - fix(self-hosted): Try dynamically setting CSRF_TRUSTED_ORIGINS (#63908) by @hubertdeng123
  650. - fix(ai-autofix): Fix ai autofix release lookup (#63926) by @jennmueng
  651. - fix(feedback): update comments signal tooltip (#63953) by @michellewzhang
  652. - ref(feedback): expand `sentryAppIssues` instead of endpoint call (#63952) by @michellewzhang
  653. - chore(api): Remove mocks from API helper invite tests (#63892) by @leeandher
  654. - fix(perf): Generate instrumentation gap spans before spans groups (#63531) by @gggritso
  655. - ref(api): Delete unnecessary `start_transaction` call in `project_configs.py` (#63948) by @szokeasaurusrex
  656. - feat(sdks): update js sdk to 7.98.0 (#63891) by @edwardgou-sentry
  657. - ref/tests(metrics_extraction): Reduce changes when adjusting spec versions (#63947) by @armenzg
  658. - fix(hybridcloud) Use record deletion to clear delivered outbox (#63890) by @markstory
  659. - feat(replay): Allow clicking on the circles in the replay timeline (#63887) by @ryan953
  660. - feat(feedback): Add comments icon to feedback list items (#63903) by @ryan953
  661. - fix(feedback): Only show URL when crash reports have a value, or its a feedback from the widget (#63901) by @ryan953
  662. - ref(ddm): replace types with interfaces (#63944) by @obostjancic
  663. - chore(cardinality): Add cardinality limiter mode option (#63942) by @Dav1dde
  664. - feat(issues/feedback): allow `sentryAppIssues` to be expanded (#63905) by @michellewzhang
  665. - chore(spans): Option for span usage metric (#63934) by @jjbayer
  666. - ref(ddm): Split utils (#63933) by @ArthurKnaus
  667. - ref(ddm): Adapt metadata to new folder structure (#63938) by @iambriccardo
  668. - fix(ddm): useNewMetricsLayer param (#63937) by @obostjancic
  669. - ref(ddm): Rename the files for metrics metadata (#63931) by @iambriccardo
  670. _Plus 517 more_
  671. 24.1.0
  672. ------
  673. ### Various fixes & improvements
  674. - feat(ddm-onboarding): Add dotnet instructions (#63194) by @ArthurKnaus
  675. - fix(hybridcloud) Add org slug route for prompts-activity (#63122) by @markstory
  676. - Fix typo in symx metrics (#63201) by @Swatinem
  677. - chore(app-start): Add screen total referrer (#63192) by @narsaynorath
  678. - ref(metrics_extraction): Metric spec versioning preparation (#63114) by @armenzg
  679. - feat(ds): Only show Get Samples if org is dynamically sampled (#63193) by @matejminar
  680. - feat(ddm-onboarding): Add js server instructions (#63189) by @ArthurKnaus
  681. - chore(ddm): remove addWidgets functionality (#63188) by @obostjancic
  682. - feat(ddm): new query default (#63187) by @obostjancic
  683. - feat(ddm-onboarding): Add electron instructions (#63186) by @ArthurKnaus
  684. - ref(ddm): Disable DDM via env var (#63178) by @jan-auer
  685. - profiling(ref): specify int type for profiling.flamegraph.profile-set.size option (#63175) by @viglia
  686. - feat(ddm): Move settings out of metrics selector (#63104) by @matejminar
  687. - fix(flutter-web): hide unactionable missing source context errors (#62998) by @buenaflor
  688. - ref(profiling): add option to handle the size of the profiles set to compute the flamegraph (#63112) by @viglia
  689. - fix(self-hosted): Superuser can set options in self-hosted (#63068) by @hubertdeng123
  690. - feat(partnerships): adding org slug to agreement component (#63156) by @sentaur-athena
  691. - feat: apitoken last characters option (#62972) by @mdtro
  692. - fix: remove lodash/find usages (#63150) by @anonrig
  693. - fix(performance): simplify `extractSpanURLString` method (#63153) by @anonrig
  694. - ref(escalating issues): Remove backend feature flag references (#63036) by @ceorourke
  695. - fix: remove lodash/flatmap usages (#63149) by @anonrig
  696. - fix(events): remove lodash/assign usage (#63148) by @anonrig
  697. - fix(webVitals): remove lodash/toUpper usage (#63146) by @anonrig
  698. _Plus 677 more_
  699. 23.12.1
  700. -------
  701. ### Various fixes & improvements
  702. - migrations(crons): Add is_muted to MonitorEnvironment (#62115) by @rjo100
  703. - chore(logs): Remove logging for entire response object (#62123) by @leeandher
  704. - ref: factor out our remaining pkg_resources usages (#62084) by @asottile-sentry
  705. - ref: upgrade jsonschema (#62087) by @asottile-sentry
  706. - Revert "ref: upgrade to python 3.11 (#59730)" (f3ad67ad) by @getsentry-bot
  707. - fix(integrations) Make social auth user update silo safe (#62092) by @markstory
  708. - fix(hybridcloud) Return early when we can't find organizations (#62126) by @markstory
  709. - profiling: test idle callback finish strategy (#62171) by @JonasBa
  710. - Revert "test(backup): Remove @targets decorator and improve assert message (#61719)" (2f81e776) by @getsentry-bot
  711. - ref(tests): Remove TestStubs from contextPickerModal, customResolutionModal, debugMeta (#62132) by @billyvg
  712. - chore: remove lodash usages (#61593) by @anonrig
  713. - ref: upgrade to python 3.11 (#59730) by @asottile-sentry
  714. - Revert "feat(replays): Remove scalar query optimization (#61815)" (08821e13) by @getsentry-bot
  715. - feat(ddm): Handle dashboard naming collision (#62163) by @ArthurKnaus
  716. - feat(ddm): Explicitly pass codeLocations to the ddm/meta endopint (#62155) by @iambriccardo
  717. - fix(ddm): Metrics meta stale time (#62162) by @ArthurKnaus
  718. - feat(ddm): Update PHP onboarding docs link (#62159) by @ArthurKnaus
  719. - fix(ddm): Grouped chart crashing without data (#62158) by @ArthurKnaus
  720. - feat(ddm): Add PHP onboarding (#62156) by @ArthurKnaus
  721. - fix(onboarding-docs): Prism console warning language text (#62154) by @ArthurKnaus
  722. - feat(setting): Add audit log to add team (#62129) by @ykamo001
  723. - fix(open-pr-comments): template nits (#62130) by @cathteng
  724. - fix(suspect-commits): Fix code mapping for files without a slash (#61896) by @malwilley
  725. - feat(replays): Add click.react_component_name as searchable field (#62027) by @cmanallen
  726. _Plus 100 more_
  727. 23.12.0
  728. -------
  729. ### Various fixes & improvements
  730. - fix(craft): Set craft artifact provider to none (#62001) by @hubertdeng123
  731. - fix(starfish): Obey `utc` URL parameter (#61963) by @gggritso
  732. - ref(stats-detectors): Move classes for better imports (#61959) by @Zylphrex
  733. - feat(devserver) Bake in options to streamline devserver + ngrok (#61953) by @markstory
  734. - feat(replays): Remove scalar query optimization (#61815) by @cmanallen
  735. - fix(ddm): display all code locations (#61994) by @obostjancic
  736. - ref: upgrade to python 3.9 (#36860) by @asottile-sentry
  737. - feat(ddm): Move feedback button to header (#61997) by @ArthurKnaus
  738. - feat(inbound-filters): Relax pattern for matching ChunkLoadError(s) (#61988) by @iambriccardo
  739. - feat(discover): Add support for p90 in discover (#61990) by @iambriccardo
  740. - feat(ddm): Rename ddm to metrics (#61993) by @matejminar
  741. - fix(ddm): code location copy event propagation (#61987) by @obostjancic
  742. - feat(alerts): fade out custom percentiles (#61926) by @obostjancic
  743. - Fix Craft publish (#61982) by @chadwhitacre
  744. - ref(crons): Move tolerance fields out in monitor form (#61807) by @davidenwang
  745. - fix(replay): Fix alignment of FeatureBadge in Replay Details tabs (#61970) by @ryan953
  746. - feat(backup): Add creator/owner email/username to GET /relocations/ (#61969) by @azaslavsky
  747. - feat(crons): Sort DISABLED monitors to the end (#61950) by @evanpurkhiser
  748. - nit: Allow skipping scope_list argument in util func (#61967) by @schew2381
  749. - feat(staff): Create initial staff class for _admin mode (#61653) by @schew2381
  750. - Revert "ref: remove self-hosted cloudbuild (#61727)" (ae39b423) by @getsentry-bot
  751. - feat(spans): Groundwork for indexed spans tests (#61766) by @wmak
  752. - fix(user token): Stop leaking API token (#61941) by @ykamo001
  753. - fix(slack); Check for existence of org_context (#61966) by @ceorourke
  754. _Plus 934 more_
  755. 23.11.2
  756. -------
  757. ### Various fixes & improvements
  758. - feat(notifications): replace logic for bulk settings update (#60502) by @scefali
  759. - ref(notifications): remove some unused hybrid cloud service methods (#60488) by @scefali
  760. - fix(backup): Fix various small import and comparison bugs (#60593) by @azaslavsky
  761. - fix(alerts): Chart query overflowing container in alert details (#60597) by @ArthurKnaus
  762. - fix(perf): Allow `null` size fields in span waterfall (#60601) by @gggritso
  763. - ref(notifications): remove unused notification manager methods (#60493) by @scefali
  764. - ref(notifications): stop using update settings tests p2 (#60500) by @scefali
  765. - ref(notifications): modify legacy option code (#60437) by @scefali
  766. - ref(notifications): stop using update settings in unsubscribe context (#60445) by @scefali
  767. - fix(ddm): invalid mri message (#60599) by @obostjancic
  768. - feat(resources): Add link to resource summary from waterfall (#60557) by @AbhiPrasad
  769. - chore(perf-web-vitals-widget): Updated description. (#60598) by @Abdkhan14
  770. - ref(webvitals): Support for using stored performance scores (#60397) by @edwardgou-sentry
  771. - chore(codeowners): add ddm owners (#60588) by @obostjancic
  772. - ref(charts): Use `GranularityLadder` class to get chart intervals (#60374) by @gggritso
  773. - feat(starfish): Fetch better releases in the selector (#60563) by @shruthilayaj
  774. - feat(profiling): add copy function source button (#60468) by @JonasBa
  775. - fix(hybrid-cloud): Fix cross-silo access on issue creation (#60595) by @leeandher
  776. - chore(hybridcloud) Move email reply tasks to a dedicated queue (#60560) by @markstory
  777. - fix(hybridcloud) Remove externalactor.actor_id (#60548) by @markstory
  778. - perf(charts): refactor baseChart (#60411) by @JonasBa
  779. - fix(metrics): Refine text contents for investigation rule notification (#60590) by @RaduW
  780. - ref(profiling): remove old call tree table (#60052) by @JonasBa
  781. - feat(ddm): spans use case (#60587) by @obostjancic
  782. _Plus 111 more_
  783. 23.11.1
  784. -------
  785. ### Various fixes & improvements
  786. - chore(stats-detectors): Remove feature flag from root cause analysis … (#60408) by @Zylphrex
  787. - ref(hybrid-cloud): Removes unused onboarding task handling (#60337) by @GabeVillalobos
  788. - ref(notifications): remove UserNotificationSettingsDetailsEndpoint (#60302) by @scefali
  789. - fix(browser-starfish): fix query main graphs on resource module (#60409) by @DominikB2014
  790. - chore(stats-detector): Remove feature flag checks in regression issues (#60406) by @Zylphrex
  791. - fix(backup): Handle multiple emails per user (#60404) by @azaslavsky
  792. - test(hc): Stabilize ProjectUserFeedbackDocs (#60405) by @RyanSkonnord
  793. - feat(open-source): Set feature flags for Open Source users (#59956) by @NisanthanNanthakumar
  794. - fix(ci): Reduce the amount of test data that's stored (#60197) by @evanh
  795. - feat(integrations): make sure stacktrace-link feature is set (#60326) by @scefali
  796. - ref(stacktrace): Remove references to frame.errors (#60393) by @malwilley
  797. - ref(feedback): update empty state illustration (#60399) by @michellewzhang
  798. - ref(crons): Add project_id to monitor_validation_failed log (#60402) by @evanpurkhiser
  799. - fix(browser-starfish): domain-filter not working (#60398) by @DominikB2014
  800. - ref(notifications): stop providing organization_id_for_team argument (#60296) by @scefali
  801. - test(hc): Fix bug in snapshot comparison with altered test class name (#60325) by @RyanSkonnord
  802. - fix(browser-starifish): remove alpha badge resource module (#60392) by @DominikB2014
  803. - ref: fix typing for avatar endpoints (#60319) by @asottile-sentry
  804. - test(hc): Change inheritance from AlertRuleDetailsPutEndpointTest (#60331) by @RyanSkonnord
  805. - ref(hc): Handle LazyObjects in serialize_generic_user (#60120) by @RyanSkonnord
  806. - feat(open-pr-comments): comment template (#60317) by @cathteng
  807. - fix(browser-starfish): cursor persisting when navigating between pages/filters (#60378) by @DominikB2014
  808. - ref(codeowners): Adding wildcard to groupEventDetails (#60361) by @k-fish
  809. - fix(recommended-event): Use event ID as tie breaker to match latest event (#60323) by @malwilley
  810. _Plus 227 more_
  811. 23.11.0
  812. -------
  813. ### Notification Settings 2.0 (ongoing)
  814. By: @scttcper (#58638, #58615)
  815. ### Resource Module Internal (ongoing)
  816. By: @DominikB2014 (#58939, #58937, #58891, #58785, #58768, #58792, #58770)
  817. ### Various fixes & improvements
  818. - fix(wizard) Fix possibly unbound variable in setup wizard (#59934) by @markstory
  819. - fix(starfish): Primary release can be undefined, check for it (#59993) by @shruthilayaj
  820. - feat(webvitals): Check if ttfb exists to determine proper no data state (#59912) by @edwardgou-sentry
  821. - feat(starfish): Highlight TTFD and link to docs when 0 (#59997) by @narsaynorath
  822. - fix(stafish): Fix typo in variable name (#59988) by @gggritso
  823. - feat(spans): Record resource spans for clustering (#58689) by @jjbayer
  824. - feat(metric-extraction): validate specs (#59981) by @obostjancic
  825. - ref(browser-starfish): use the shared domain selector in resource module (#59950) by @DominikB2014
  826. - feat(database): "View Query Summary" links in span waterfall (#59785) by @gggritso
  827. - chore(starfish): Rename breadcrumb, remove duplicate sidebar item (#59980) by @shruthilayaj
  828. - feat(profiling): add differential flamegraph boilerplate to statistical issue (#59905) by @JonasBa
  829. - feat(starfish): Use short release version and truncate (#59936) by @shruthilayaj
  830. - Unrevert "fix(metrics-extraction): Explicitly set metric type for metrics querying (#59931)" (#59960) by @k-fish
  831. - fix(email): alerts migration email text (#59975) by @obostjancic
  832. - feat(metrics) Check max orgs per project limit when creating investigation rules (#59852) by @RaduW
  833. - feat(ddm-alerts): Add force metrics layer params (#59974) by @ArthurKnaus
  834. - fix(project-create): Use large icon variant in framework suggestion (#59969) by @ArthurKnaus
  835. - ref: upgrade mypy to 1.7.0 (#59937) by @asottile-sentry
  836. - Move metadata from `File` to `EventAttachment` (#59845) by @Swatinem
  837. - Revert "feat(metric-extraction): validate specs (#59894)" (dc20e27c) by @getsentry-bot
  838. - feat(metric-extraction): validate specs (#59894) by @obostjancic
  839. - feat(ddm): Add option to forcefully use the new metrics layer (#59898) by @iambriccardo
  840. - feat(open-pr-comments): get PR files (#59933) by @cathteng
  841. - fix(feedback): Remove feedback item update on feedback list change (#59947) by @c298lee
  842. _Plus 1016 more_
  843. 23.10.1
  844. -------
  845. ### Various fixes & improvements
  846. - fix(hybridcloud) Fix a queue silo assignment (#58386) by @markstory
  847. - feat(migrations): Add new index to `IncidentTrigger` model (#58467) by @isabellaenriquez
  848. - feat(suspect-commits): Remove suspect commit recalculation period (when all-frames is enabled) (#58415) by @malwilley
  849. - fix(starfish): Pass webvital to charts in Webvitals module (#58517) by @edwardgou-sentry
  850. - feat(hc): Add __str__ implementation for RpcUser (#58485) by @mrduncan
  851. - Revert "feat(replays): Replay layout move start time (#58488)" (80e576dd) by @getsentry-bot
  852. - Revert "feat(replays): Replay layout add breadcrumbs to fullscreen mode (#58466)" (7f6fe452) by @getsentry-bot
  853. - feat(replays): Replay layout move start time (#58488) by @c298lee
  854. - feat(replays): Replay layout add breadcrumbs to fullscreen mode (#58466) by @c298lee
  855. - fix(alerts): use generic metrics dataset for on demand (#58510) by @obostjancic
  856. - fix(on-demand): Fix p100 and percentiles (#58511) by @iambriccardo
  857. - feat(dynamic-sampling):Add raw_query and user relation to custom_rules model (second try) (#58447) by @RaduW
  858. - fix(alerts): on demand migration ui (#58508) by @obostjancic
  859. - Revert "fix(alerts): Fix dataset selector width (#58499)" (#58501) by @ArthurKnaus
  860. - fix(on-demand): p100 support (#58500) by @obostjancic
  861. - fix(alerts): Fix dataset selector width (#58499) by @ArthurKnaus
  862. - fix(on-demand): remove p90 (#58496) by @obostjancic
  863. - feat(on-demand): conditionally show on-demand UI (#58330) by @obostjancic
  864. - ref(escalating-issues): Change batch size to 100 (#58489) by @NisanthanNanthakumar
  865. - Add Papercut label (ff80fbb5) by @chadwhitacre
  866. - chore(replay): Cleanup DOM Tab test, before we remove the tab itself (#58486) by @ryan953
  867. - feat(replay): Add Jump up|down buttons to all the Replay Details tables & lists (#58359) by @ryan953
  868. - chore(agg-spans): Update language on span frequency (#58484) by @shruthilayaj
  869. - fix(statistical-detectors): Feature flags in wrong place (#58483) by @Zylphrex
  870. _Plus 209 more_
  871. 23.10.0
  872. -------
  873. ### Discord Integration (ongoing)
  874. By: @17hogeju (#57522)
  875. ### Notification Analytics Milestone 2 (ongoing)
  876. By: @scttcper (#56700)
  877. ### Notification Settings 2.0 (ongoing)
  878. By: @snigdhas (#57053, #56717, #56621)
  879. ### Various fixes & improvements
  880. - feat(crons): Add cron monitor created metric (#58017) by @davidenwang
  881. - ref(participants): Check for group list (#58204) by @ceorourke
  882. - feat(hybridcloud) Fix silo issues in shared issue HTML view (#57978) by @markstory
  883. - feat(sdk): Upgrade `@sentry` SDKs to v7.74.0 (#58198) by @billyvg
  884. - test(backup): Create backup version snapshot tests (#58173) by @azaslavsky
  885. - fix(hc): Silo fixes for alert rule actions (#58185) by @RyanSkonnord
  886. - meta(crons): Update API help text (#58048) by @rjo100
  887. - fix(ci): fix rate limit test (#58184) by @volokluev
  888. - feat(ui): Throw error on non-json api responses (#58129) by @scttcper
  889. - ref(bug reports): display name and email in list and details (#58087) by @michellewzhang
  890. - chore(actionable-items): remove feature flag backend (#57934) by @roggenkemper
  891. - update release threshold api routes (#58177) by @nhsiehgit
  892. - feat(backup): Support import decryption (#58128) by @azaslavsky
  893. - chore(alert-rule): Add jira server action to frontend enum (#58186) by @schew2381
  894. - feat(metrics): Add new option to toggle reading from new cache schema for indexer (#58170) by @john-z-yang
  895. - fix(hybridcloud) Assign control silo tasks to correct queues (#58112) by @markstory
  896. - fix(feedback): Improve spacing between feedback list items (#58182) by @ryan953
  897. - ref(bug reports): modify blueprint name and contact_email to reflect BE (#58083) by @michellewzhang
  898. - fix(hc): Fix silo availability error in send_alert_event (#58044) by @RyanSkonnord
  899. - ref(replay): Improve accessibility type names, and compat with replay frames (#58179) by @ryan953
  900. - feat(notifications): adds backfill for weekly report settings (#58168) by @scefali
  901. - feat(notifications): remove notification double write feature flag (#57863) by @scefali
  902. - feat(discord): adds logging of discord errors (#58176) by @scefali
  903. - fix(stat-detectors): Use 7 days for span analysis (#58096) by @narsaynorath
  904. _Plus 1060 more_
  905. 23.9.1
  906. ------
  907. ### Various fixes & improvements
  908. - fix(fly): return user with correct auth (#56523) by @sentaur-athena
  909. - chore(api): Delete acceptance test for user tokens (#56537) by @schew2381
  910. - fix(backup): Suppress verbose SQL error reporting (#56583) by @azaslavsky
  911. - chore(github-growth): remove auto repo linking feature flag (#56581) by @cathteng
  912. - docs: Create some stories for PageBanner (#56519) by @ryan953
  913. - docs: Create a story for FeatureBadge (#56510) by @ryan953
  914. - ref(ui): Refine featureDisabled prop type (#56538) by @scttcper
  915. - migration(crons): Add MonitorIncident table (#56435) by @rjo100
  916. - ref(escalating-issues): Auto-transition tasks should update up to 500_000 groups per minute (#56168) by @NisanthanNanthakumar
  917. - chore(notifications): rename approval notifications to nudges in the UI (#56505) by @cathteng
  918. - feat(trace-view-load-more): Added ui for loading longer traces. (#56476) by @Abdkhan14
  919. - feat(starfish): add span domain array (#56494) by @wmak
  920. - chore(profiling): Track accepted profile outcomes (#56575) by @Zylphrex
  921. - feat(replay): Link page breadcrumb on Replay Details to the list page, filtered by project (#56574) by @ryan953
  922. - feat(crons): Add mark_environment_missed task (#56528) by @rjo100
  923. - fix(notifications): fixes bug for commited_only settings (#56518) by @scefali
  924. - ref(ddm): datetime params (#56567) by @obostjancic
  925. - chore(github-growth): stop writing to commitfilechange language column (#56491) by @cathteng
  926. - chore(github-growth): more FE analytics (#56507) by @cathteng
  927. - chore(hybrid-cloud): Mark extract_user_ids_from_mentions to be a region silo function (#56441) by @dashed
  928. - feat(statistical-detectors): Integrate detector with breakpoint detection (#56384) by @Zylphrex
  929. - feat(trace-view-load-more): Fixed bug that loads an extra row of orphans. (#56561) by @Abdkhan14
  930. - fix(dashboards): Use loading indicator to avoid multiple requests (#56558) by @narsaynorath
  931. - chore(hybrid-cloud): Stabilize issue integration defaults for split silo (#56297) by @dashed
  932. _Plus 46 more_
  933. 23.9.0
  934. ------
  935. ### Notify on Disabled Integration (ongoing)
  936. https://www.notion.so/sentry/Tech-Spec-Notify-on-Disabled-Integration-Spec-e7ea0f86ccd6419cb3e564067cf4a2ef?pvs=4
  937. By: @chloeho7 (#54286)
  938. ### save_event improvements (ongoing)
  939. With the new 2023 grouping config, we started incurring a higher processing cost per saved event.
  940. In order to bring it back under controlled a series of code changes will be perform to improve the understandability of the code and its performance.
  941. By: @armenzg (#53643)
  942. ### Notification Analytics Milestone 2 (ongoing)
  943. By: @scttcper (#56280, #56151, #56141, #55937, #55479, #55366, #54891, #54809)
  944. ### Various fixes & improvements
  945. - feat(crons): Fan out `check_missing` task to each `monitor_environment` (#55924) by @rjo100
  946. - fix(severity): Prevent skipping severity score when equal to zero (#56225) by @lobsterkatie
  947. - docs(api): Clarify how to use id param in bulk delete issue endpoint (#56422) by @malwilley
  948. - feat(perf): Add link to Database view to sidebar (#56341) by @gggritso
  949. - chore(codeowners): update enterprise codeowners (#56487) by @cathteng
  950. - fix(commits): use externalId in filechange and project release commits FE (#56146) by @cathteng
  951. - fix(github-growth): improve performance of missing members API (#56477) by @cathteng
  952. - fix(api): test symbol sources in DetailedProjectSerializer (#56473) by @cathteng
  953. - feat(replay): Upgrade rrweb packages to v2 (#56088) by @billyvg
  954. - fix(backup): Handle UserRole name collisions (#56479) by @azaslavsky
  955. - logging(apis): better logging for api failures (#56432) by @scefali
  956. - Release threshold folder imports nit (#56400) by @nhsiehgit
  957. - docs: Document our loadingTriangle component (#56438) by @ryan953
  958. - ref(tests): Split error event tests into classes (#56448) by @lobsterkatie
  959. - fix(jira-server): try a second project for jira server if the first one fails (#56439) by @scefali
  960. - ref(snuba-sdk): Update snuba-sdk version to latest 2.0.1 (#56419) by @enochtangg
  961. - fix(actionable-items): Remove source map debug from actionable items (#56405) by @roggenkemper
  962. - feat(save_event): Always use cache for stacktrace processing (#56413) by @armenzg
  963. - feat(stat-detectors): Add param to fetch all tags (#56434) by @narsaynorath
  964. - feat(ddm): support for 1m interval (#56467) by @obostjancic
  965. - fix(minimetrics): Fix broken recursion detection (#56466) by @mitsuhiko
  966. - ref(typing): Few typing changes for sentry.snuba.metrics (#56397) by @armenzg
  967. - ref(sentry-sdk): Upgrade SDK (#56461) by @mitsuhiko
  968. - feat(ddm): Add metrics explorer from getsentry (#56460) by @matejminar
  969. _Plus 1078 more_
  970. 23.8.0
  971. ------
  972. ### Notify on Disabled Integration (ongoing)
  973. https://www.notion.so/sentry/Tech-Spec-Notify-on-Disabled-Integration-Spec-e7ea0f86ccd6419cb3e564067cf4a2ef?pvs=4
  974. By: @chloeho7 (#54734, #54655, #54589, #54640, #54466, #54348, #54339, #53522, #54234)
  975. ### Notification Analytics Milestone 2 (ongoing)
  976. By: @scttcper (#54744)
  977. ### Various fixes & improvements
  978. - (fix): user creation for self-hosted clean installs (#54776) by @hubertdeng123
  979. - fix(replays): remove replay from desktop and mobile projects (#54749) by @michellewzhang
  980. - ref: add mypy stubs for django-csp (#54786) by @asottile-sentry
  981. - chore(hybrid-cloud): Update OrganizationAuditLogsEndpoint to be a control silo endpoint (#54755) by @dashed
  982. - fix: ensure PYTEST_DEBUG_TEMPROOT exists (#54725) by @joshuarli
  983. - ref(replays): Update replay pages to show project name (#54728) by @c298lee
  984. - chore(codeowners): Update codeowners with project creation files (#54774) by @schew2381
  985. - feat(commit-context): Do not create if older than 1 year (#54624) by @NisanthanNanthakumar
  986. - feat(backup): Support foreign key remapping (#54610) by @azaslavsky
  987. - feat(tracing-without-performance): Replay compatibility and ui improvements. (#54700) by @Abdkhan14
  988. - fix(crons): Add border back to non-sticky timeline header (#54770) by @davidenwang
  989. - ref: upgrade datadog to a typed version (#54758) by @asottile-sentry
  990. - ref(crons): Remove temp_task_dispatcher (#54768) by @evanpurkhiser
  991. - fix(metrics-layer): Add xfailing metrics layer sort test (#54712) by @wmak
  992. - ref(query-builder): Cleanup query_framework code (#54586) by @wmak
  993. - ref(statistical-detectors): Clean up statistical detectors calculation (#54694) by @Zylphrex
  994. - fix(crons): Add className parameter to timeline components (#54769) by @davidenwang
  995. - ref(ui): Enhance Carousel component (#54747) by @evanpurkhiser
  996. - Feat/opt automator add region (#54631) by @kneeyo1
  997. - sample-event: try synchronous kafka producing (#54748) by @JoshFerge
  998. - ref(alerts): Don't pass "name" field (#54739) by @ceorourke
  999. - chore(issues): Cleanup apply_rule logs and add some more for regressions (#54455) by @snigdhas
  1000. - feat(crons): Implement fallback clock pulse task (#54647) by @evanpurkhiser
  1001. - fix(actionable-items): Add scraping as hidden error (#54648) by @roggenkemper
  1002. _Plus 424 more_
  1003. 23.7.2
  1004. ------
  1005. ### Notify on Disabled Integration (ongoing)
  1006. https://www.notion.so/sentry/Tech-Spec-Notify-on-Disabled-Integration-Spec-e7ea0f86ccd6419cb3e564067cf4a2ef?pvs=4
  1007. By: @chloeho7 (#54001)
  1008. ### save_event improvements (ongoing)
  1009. With the new 2023 grouping config, we started incurring a higher processing cost per saved event.
  1010. In order to bring it back under controlled a series of code changes will be perform to improve the understandability of the code and its performance.
  1011. By: @armenzg (#53645, #53541)
  1012. ### Various fixes & improvements
  1013. - feat(tracing-without-performance): Returned orphan errors with trace … (#54103) by @Abdkhan14
  1014. - feat(profiling): use color pallete on chart (#54101) by @JonasBa
  1015. - feat(issue-platform): Add an experimental frame drop issue type (#54028) by @phacops
  1016. - feat(backup): Add DateAddedComparator (#54009) by @azaslavsky
  1017. - feat(opsgenie): refactor validation (#53996) by @mifu67
  1018. - Declare events.save_event_highcpu queue (#54041) by @hubertsentry
  1019. - fix(escalating): Add reason to feedback analytic (#54082) by @scttcper
  1020. - deps(ui): Update jest dependencies (#54065) by @scttcper
  1021. - feat(discord): Add metrics (#54072) by @spalmurray
  1022. - fix(starfish): Handle free text search (#54060) by @wmak
  1023. - fix(github-comments): update comment copy (#54104) by @cathteng
  1024. - fix(most-helpful-event): One event dropdown disabled (#54070) by @17hogeju
  1025. - feat(most-helpful-event): Add option in user settings to change default issue event (#54048) by @17hogeju
  1026. - ref(metrics-layer): Test the span metric charts too (#54045) by @wmak
  1027. - fix(metrics-layer): Incorrect metrics layer tests (#54046) by @wmak
  1028. - fix(notification-actions): allow org and team admins to modify (#53797) by @cathteng
  1029. - ref(starfish): Show 3 significant digits for queries per minute try 2 (#54100) by @AbhiPrasad
  1030. - ref(hc): Mark silo stable tests stable (#54074) by @mrduncan
  1031. - feat(profiling): add react native onboarding wizard (#54096) by @JonasBa
  1032. - fix(mypy): fix mypy errors for src/sentry/api/serializers/models (part 1) (#53905) by @hubertsentry
  1033. - Revert "ref(starfish): Show 3 significant digits for queries per minute (#54033)" (dd75a2cb) by @getsentry-bot
  1034. - ref(starfish): Show 3 significant digits for queries per minute (#54033) by @AbhiPrasad
  1035. - chore(grouping): Kill grouping levels endpoints (#54073) by @lobsterkatie
  1036. - xfail flakey test (#54081) by @JoshFerge
  1037. _Plus 400 more_
  1038. 23.7.1
  1039. ------
  1040. ### Escalating Issues V1 (ongoing)
  1041. This will allow marking an issue as archived until escalating.
  1042. By: @scttcper (#53011)
  1043. ### Escalating Issues V2 (EA) (ongoing)
  1044. This is a placeholder milestone for tracking post-v1 work for escalating issues.
  1045. See the RFC: https://github.com/getsentry/rfcs/blob/main/text/0078-escalating-issues.md
  1046. There's also discussions about escalation in here:
  1047. https://github.com/getsentry/sentry/discussions/43039
  1048. 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.
  1049. By: @snigdhas (#52774)
  1050. ### Various fixes & improvements
  1051. - chore(replay): Remove unicode from slack View Replays link (#53518) by @ryan953
  1052. - feat(starfish): Replaces usage of p95 in the Database Module with avg (#53515) by @edwardgou-sentry
  1053. - Revert "feat(profiling): Deobfuscate Android methods' signature (#53427)" (af3ae3b7) by @getsentry-bot
  1054. - feat(integration-slack): store request error counts and disable on broken (#52994) by @chloeho7
  1055. - ref(grouping): Clean up message normalization (#53479) by @lobsterkatie
  1056. - ref(projects): Redirect after project transfer (#53466) by @ceorourke
  1057. - feat(secrecy): enable data secrecy for organizations (#53322) by @cathteng
  1058. - feat(perf-detector-threshold-configuration) Added option for new Cons… (#53461) by @Abdkhan14
  1059. - fix(ci): Increase codecov `comment.after_n_builds` value (#53488) by @lobsterkatie
  1060. - test(ui): Reset api mocks between EventDetails tests (#53497) by @scttcper
  1061. - ref(hybrid-cloud): Fix a few tests in split silo mode (#53482) by @mikejihbe
  1062. - feat(profiling): Deobfuscate Android methods' signature (#53427) by @phacops
  1063. - feat(perf-detector-threshold-configuration) Added new thresholds and … (#53460) by @Abdkhan14
  1064. - fix(starfish): clicking endpoint in span summary replaces groupId with 'db' in url (#53517) by @DominikB2014
  1065. - feat(starfish): add transaction.op:http.server to webservice queries (#53355) by @DominikB2014
  1066. - fix(starfish): add quotes around transaction name (#53516) by @DominikB2014
  1067. - ref(redis): Configure default 3s socket timeout (#53513) by @beezz
  1068. - feat(dynamic-sampling): Add project slug to response of AM2 check (#53514) by @iambriccardo
  1069. - feat(dnd-worldmap-removal) Added null checks for columns and fields. (#53475) by @Abdkhan14
  1070. - Implement ArtifactBundle flat file indexing (#53505) by @Swatinem
  1071. - chore(ts): Improve Starfish span metrics typing (#53453) by @gggritso
  1072. - ref(feature): Remove no longer used heartbeat feature flag (#53510) by @priscilawebdev
  1073. - ref(feature): Remove heartbeat feature (#53509) by @priscilawebdev
  1074. - feat(dynamic-sampling): Improve check am2 compatibility (#53414) by @iambriccardo
  1075. _Plus 399 more_
  1076. 23.7.0
  1077. ------
  1078. ### Escalating Issues V2 (EA) (ongoing)
  1079. This is a placeholder milestone for tracking post-v1 work for escalating issues.
  1080. See the RFC: https://github.com/getsentry/rfcs/blob/main/text/0078-escalating-issues.md
  1081. There's also discussions about escalation in here:
  1082. https://github.com/getsentry/sentry/discussions/43039
  1083. 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.
  1084. By: @snigdhas (#52360)
  1085. ### Search Shortcuts (ongoing)
  1086. 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)
  1087. By: @scttcper (#52414, #52348)
  1088. ### Various fixes & improvements
  1089. - test(hybrid-cloud): Stabilizes sentry app install tests (#53004) by @GabeVillalobos
  1090. - ref(saved search): Migrate betterPriority to priority (#52909) by @ceorourke
  1091. - ref(sort): Change betterPriority to priority (#52910) by @ceorourke
  1092. - feat(crons): Use timeout_at for timed out check-ins (#52570) by @rjo100
  1093. - ref(event_manager): Fix typing issues for event_manager (#52974) by @armenzg
  1094. - test(backup): Add more model tests (#52923) by @azaslavsky
  1095. - fix(replays): fix bin/mock-replays script (#52927) by @michellewzhang
  1096. - ref(crons): Change to uuid validator for trace (#52561) by @rjo100
  1097. - fix(crons): Properly checks for environment name lengths (#52820) by @rjo100
  1098. - feat(grouping): Add metrics for issue merging and unmerging (#52919) by @lobsterkatie
  1099. - chore(starfish): Adding referrers to starfish (#52749) by @wmak
  1100. - chore(starfish): Add starfish referrers to the backend (#52754) by @wmak
  1101. - ref(tsc): usageChart utils to tsx (#52935) by @IanWoodard
  1102. - chore(hybrid-cloud): Add tags to debug Identity service (#52997) by @dashed
  1103. - feat(starfish): Add unit and types for rates (#52991) by @wmak
  1104. - ref(replay): Refactor the "Next Breadcrumb" button to use *Frame types (#52931) by @ryan953
  1105. - fix(group-attributes): log metric when post_save.send(update_fields=["status", "subs"]) is called for group (#52996) by @barkbarkimashark
  1106. - fix(releases): Use query parameter when switching filters (#52937) by @scttcper
  1107. - fix(discord): Change log level from error to info for unauthorized interactions (#52946) by @spalmurray
  1108. - ref: fix typing for sentry.models.__init__ (#52992) by @asottile-sentry
  1109. - feat(replay): Render the replay currentTime & hoverTime inside the performance waterfall (#52890) by @ryan953
  1110. - feat(perf): Hide timing metrics on http (#52993) by @k-fish
  1111. - fix(issue-details): Fix react warning (#52907) by @roggenkemper
  1112. - fix(hybrid-cloud): Fixes tests for split DB mode app installs using transaction routing and silo annotations (#52932) by @GabeVillalobos
  1113. _Plus 434 more_
  1114. 23.6.2
  1115. ------
  1116. ### Escalating Issues V1 (ongoing)
  1117. This will allow marking an issue as archived until escalating.
  1118. By: @scttcper (#51765, #51852, #52048, #51766, #51735, #51671, #51158, #51185, #51187)
  1119. ### Grouping Release (2023-01-01 config)
  1120. 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.
  1121. By: @armenzg (#51040)
  1122. ### Search Shortcuts (ongoing)
  1123. 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)
  1124. By: @scttcper (#51564, #51565, #51194)
  1125. ### Various fixes & improvements
  1126. - meta(routing) Sync with product-owners.yml in security-as-code@4447d434 (#52367) by @getsantry
  1127. - fix(ui): Set lazy calendar component type (#52381) by @scttcper
  1128. - chore(gh-comments): Drop pr window to 7 days for rollout (#51837) by @AniketDas-Tekky
  1129. - ref(autocomplete): convert test to tsx (#52357) by @JonasBa
  1130. - feat(functions): Tune function trends default threshold (#52346) by @Zylphrex
  1131. - fix(starfish): Time spent local was always querying light time spent (#52374) by @shruthilayaj
  1132. - ref(tests): convert test to tsx (#52368) by @JonasBa
  1133. - feat(slack): slack channel lookup via schedule message (#52034) by @chloeho7
  1134. - feat(crons): Change crons groupcategory name (#52037) by @rjo100
  1135. - feat(perf-detector-threshold-configuration) Added frontend changes for more threshold configurations. (#52262) by @Abdkhan14
  1136. - fix(hc): Prevent exception from siloed_atomic (#52326) by @RyanSkonnord
  1137. - feat(escalating-issues): Update MsTeams integration to use Group substates (#51756) by @NisanthanNanthakumar
  1138. - ref(crons): Remove references to crons-issue-platform flag (#52036) by @rjo100
  1139. - Ref(generic-metrics): set default for index-tag-values to False (#52370) by @john-z-yang
  1140. - feat(github-comments): use internal feature flag (#52002) by @cathteng
  1141. - fix(ui): Export named constants from forms (#52361) by @scttcper
  1142. - fix(mute-metric-alerts): Use incident link in metric alert emails for muting (#52363) by @roggenkemper
  1143. - feat(starfish): API module consistency and continuity updaes (#52347) by @edwardgou-sentry
  1144. - fix(mute-metric-alerts): Add query params to incident redirect (#52362) by @roggenkemper
  1145. - fix(github-comments): update option toggle copy (#52354) by @cathteng
  1146. - nit: Update fly build config (#52301) by @nhsiehgit
  1147. - ref: django 3.x does not pass None groups to views any more (#52341) by @asottile-sentry
  1148. - meta(routing) Sync with product-owners.yml in security-as-code@3d4fceac (#52355) by @getsantry
  1149. - ref: make app label an identifier (#52342) by @asottile-sentry
  1150. _Plus 790 more_
  1151. 23.6.1
  1152. ------
  1153. ### Various fixes & improvements
  1154. - chore(hybrid-cloud): Fix get_webhook_payload_from_outbox classmethod (#51113) by @dashed
  1155. - ref(js): Convert access.spec to tsx (#51106) by @evanpurkhiser
  1156. - ref(js): Convert feature.spec to tsx (#51107) by @evanpurkhiser
  1157. - ref(js): Convert breadcrumbs.spec to tsx (#51109) by @evanpurkhiser
  1158. - ref(js): Convert dateTime.spec to tsx (#51111) by @evanpurkhiser
  1159. - fix(crons): Properly send fingerprint array through issue platform (#51103) by @rjo100
  1160. - ref(hc): Updates org deletion code to queue an org mapping outbox update (#51004) by @GabeVillalobos
  1161. - meta: Snuba team owns the post process forwarder (#51090) by @lynnagara
  1162. - ref: Remove dead code from post process forwarder (#51079) by @lynnagara
  1163. - ref: Remove spammy debug logs (#51001) by @untitaker
  1164. - fix: Use unified CLI for metrics indexer in devserver (#51046) by @untitaker
  1165. - feat(mute-metric-alerts): Add mute button to metric alerts page (#50967) by @roggenkemper
  1166. - fix(hc): Serialize the organization via RPC to json (#51078) by @corps
  1167. - fix(compactSelect): Escape quotes inside option values (#51007) by @vuluongj20
  1168. - fix(hybridcloud) Drain outbox after transaction completes (#51059) by @markstory
  1169. - feat(gh-comments): Queuing Logic (#50865) by @AniketDas-Tekky
  1170. - Added pretty printing to dump command (#51065) by @kneeyo1
  1171. - chore(ui): Upgrade to typescript 5.1 (#51073) by @scttcper
  1172. - feat(crons): Add hover to rows (#51012) by @evanpurkhiser
  1173. - feat(ts): Add LinkButton alias (#51013) by @evanpurkhiser
  1174. - feat(starfish): Changes the web service view throughput chart to be a line chart (#51053) by @edwardgou-sentry
  1175. - fix(starfish): use span.self_time instead of span.duration (#51051) by @DominikB2014
  1176. - feat(debug): Add Metric Alert Trigger (#51060) by @roggenkemper
  1177. - fix(ui): Remove xAxis boundaryGap from profilingMeasurements (#51008) by @scttcper
  1178. _Plus 14 more_
  1179. 23.6.0
  1180. ------
  1181. ### Escalating Issues V1 (ongoing)
  1182. This will allow marking an issue as archived until escalating.
  1183. By: @scttcper (#50456)
  1184. ### Escalating Issues V2 (EA) (ongoing)
  1185. This is a placeholder milestone for tracking post-v1 work for escalating issues.
  1186. See the RFC: https://github.com/getsentry/rfcs/blob/main/text/0078-escalating-issues.md
  1187. There's also discussions about escalation in here:
  1188. https://github.com/getsentry/sentry/discussions/43039
  1189. 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.
  1190. By: @scttcper (#50896)
  1191. ### JS Project Cleanup (ongoing)
  1192. By: @scttcper (#50684, #50682, #50670)
  1193. ### Various fixes & improvements
  1194. - fix(issues): Switch to item kind on search autocomplete (#51045) by @scttcper
  1195. - feat(consumer): Make max poll time configurable (#51020) by @ayirr7
  1196. - fix(api) Don't fail on invalid queries to organization_teams endpoint (#51042) by @markstory
  1197. - feat(starfish): Cleanup (#50957) by @DominikB2014
  1198. - feat(hybridcloud) Run celery workers for each silo (#50821) by @markstory
  1199. - fix(hybrid-cloud): Allow enums to serialize in RPC calls (#50913) by @mikejihbe
  1200. - ref: Make model cache replica db preference configurable (#51027) by @beezz
  1201. - fix(crons): Properly specify occurrence data (#50974) by @rjo100
  1202. - ref(starfish): Remove all references to scraped data SQL (#51033) by @gggritso
  1203. - feat(graphql): Add has_graphql_request analytics property to issue/event (#50949) by @malwilley
  1204. - fix(perf-issues): Require space in N+1 ext span description (#50994) by @mjq-sentry
  1205. - fix(starfish): issues table reloads when span type changes (#50970) by @DominikB2014
  1206. - feat(dynamic-sampling): Improve AM2 compatibility check (#51039) by @iambriccardo
  1207. - ref(replay): Deduplicate components used in Replay Details>Error & Network tabs (#50884) by @ryan953
  1208. - fix(traces): Return empty array when accessing offender span ids (#51037) by @narsaynorath
  1209. - feat(discover-tags): Add page_size and cursor to endpoint (#50971) by @narsaynorath
  1210. - fix(hybrid-cloud): Fix normalizeUrl (#51014) by @dashed
  1211. - feat(starfish): Switch use_case_id for spans (#50757) by @wmak
  1212. - fix(mocks) Fix load-mocks usage or OrganizationMember (#50942) by @markstory
  1213. - fix(profiling): Ensure there are symbolicated frames for profile (#50999) by @Zylphrex
  1214. - fix(starfish): Special cursor name for span table cursor (#50966) by @shruthilayaj
  1215. - feat(starfish): Span category chart error and loading status (#50946) by @shruthilayaj
  1216. - ref(starfish): Remove scraped data query fallbacks (#50972) by @gggritso
  1217. - fix(native/unreal): Don't overwrite a previously set event level (#50717) by @bitsandfoxes
  1218. _Plus 669 more_
  1219. 23.5.2
  1220. ------
  1221. ### Escalating Issues V1 (ongoing)
  1222. This will allow marking an issue as archived until escalating.
  1223. By: @scttcper (#50020), @armenzg (#49907)
  1224. ### Issue States and Filters (ongoing)
  1225. By: @scttcper (#49642, #49626, #49517, #49587, #49582)
  1226. ### Various fixes & improvements
  1227. - feat(replay): Change min version in replay onboarding (#50072) by @billyvg
  1228. - bug(replays): Fix Replay Search box overflow/wrapping (#50074) by @ryan953
  1229. - feat(replays): add replay clicks field to replay index endpoint (#49873) by @JoshFerge
  1230. - fix(analytics): Change actor_id to user_id in slack status analytic (#49966) by @jangjodi
  1231. - dep(relay): Upgrade librelay to 0.8.25 (#50063) by @iker-barriocanal
  1232. - chore(HC): Remove org mapping write paths in preparation of organization mapping updates (#50015) by @GabeVillalobos
  1233. - feat(escalating-issues): Define analytic for escalating feedback (#50000) by @jangjodi
  1234. - chore(profiling): Add referrers to profiling queries frontend (#49923) by @Zylphrex
  1235. - feat(starfish) Hook up span view filter selectors to production data (#49987) by @gggritso
  1236. - fix(hybridcloud) Fix serialization errors in RPC responses (#49922) by @markstory
  1237. - feat(dashboar-widget-description) Added description field to Widget model (#49992) by @Abdkhan14
  1238. - fix(starfish) Small fixes to spans table (#50001) by @gggritso
  1239. - chore(profiling) Add referrers to profiling queries backend (#49924) by @Zylphrex
  1240. - Revert "ref(project_creation): Add project deletion to the go back button (#49844)" (fda9548a) by @getsentry-bot
  1241. - ref(sessionstorage): use wrapper (#50051) by @JonasBa
  1242. - ref(project_creation): Add project deletion to the go back button (#49844) by @priscilawebdev
  1243. - feat: Return how an artifact was resolved (#49959) by @loewenheim
  1244. - fix(clusterer): Fix clusterer datasource in test endpoint (#50040) by @iker-barriocanal
  1245. - ref(spans): Sample all discovered rules (#49970) by @iker-barriocanal
  1246. - ref(js): Remove unnecessary AsyncComponent props (#50034) by @evanpurkhiser
  1247. - ref(js): Remove unnecessary extends AsyncComponentProps (#50031) by @evanpurkhiser
  1248. - fix(dynamic-sampling): Fix logging with missing parameter (#50038) by @iambriccardo
  1249. - fix(js): Avoid anchor nesting in monitor edit page (#50026) by @evanpurkhiser
  1250. - ref(js): Add IGNORED_SPANS_BY_DESCRIPTION in initializeSdk (#50025) by @evanpurkhiser
  1251. _Plus 268 more_
  1252. 23.5.1
  1253. ------
  1254. ### Issue States and Filters (ongoing)
  1255. By: @scttcper (#49578, #49157)
  1256. ### JS Project Cleanup (ongoing)
  1257. By: @scttcper (#49381, #49255, #49210, #49159)
  1258. ### Various fixes & improvements
  1259. - fix(hc): Change integration search endpoint to control silo (#49589) by @RyanSkonnord
  1260. - fix(starfish): Zerofill round up (#49598) by @shruthilayaj
  1261. - feat(starfish): Update endpoint overview to be consistent (#49607) by @shruthilayaj
  1262. - ref(performance): Move metrics histogram outlier filtering (#48731) by @mjq-sentry
  1263. - feat(starfish): Add top endpoints chart to web service view (#49603) by @shruthilayaj
  1264. - feat(starfish): Fix span summary chart styling (#49463) by @0Calories
  1265. - feat(starfish): Updated WSV span group chart (#49499) by @shruthilayaj
  1266. - ref(perf): Mark long-task with sentry-tracing-init (#49481) by @k-fish
  1267. - chore(profiling): Add flags for more profiling features (#49461) by @Zylphrex
  1268. - feat(starfish): Switch top graph to p50 (#49510) by @wmak
  1269. - feat(starfish): adds synchronized axis markers to starfish charts (#49504) by @edwardgou-sentry
  1270. - deps: bump profiling to alpha.6 (#49127) by @JonasBa
  1271. - feat(create-project): Add framework selection modal tests (#49305) by @priscilawebdev
  1272. - chore(discover-transactions-cell-action): Removed go to summary cell … (#49406) by @Abdkhan14
  1273. - Add index on sentry_monitorchecking.date_added to avoid seq scans during cleanup (#49310) by @beezz
  1274. - Add a utility to query the memory usage percentage of a configured redis cluster (#49459) by @Swatinem
  1275. - ref(createProject): convert test from jsx to tsx (#49304) by @priscilawebdev
  1276. - ref(project-creation): Convert overview from class to func (#49303) by @priscilawebdev
  1277. - feat(project-creation): Add framework selection modal (#49300) by @priscilawebdev
  1278. - chore(js): Use FormFieldProps vs FormField['props'] (#49591) by @evanpurkhiser
  1279. - feat(hybrid-cloud): Update api invite helper (#48829) by @dashed
  1280. - chore(js): Convert Form to a FC (#49525) by @evanpurkhiser
  1281. - ref(js): Convert SentryAppExternalIssueForm for a FC (#49581) by @evanpurkhiser
  1282. - feat(issue-states): auto transition new and regressed issues to ongoing (#49522) by @barkbarkimashark
  1283. _Plus 306 more_
  1284. 23.5.0
  1285. ------
  1286. ### Escalating Issues V1 (ongoing)
  1287. This will allow marking an issue as archived until escalating.
  1288. 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)
  1289. ### Issue States and Filters (ongoing)
  1290. By: @scttcper (#48047), @barkbarkimashark (#47691, #48042, #47881, #48043, #47753, #47720), @snigdhas (#48289, #47909, #48164, #47785, #47832, #47689, #47687, #47604, #47603, #47420)
  1291. ### JS Project Cleanup (ongoing)
  1292. By: @lobsterkatie (#49060, #49045), @scttcper (#48873, #48883, #48841, #48825, #48379)
  1293. ### Various fixes & improvements
  1294. - fix(onboarding): Add missing `useEffect` dependency (#49105) by @lobsterkatie
  1295. - ref(api): Rename `handleXhrErrorResponse` to `getXhrErrorResponseHandler` (#49100) by @lobsterkatie
  1296. - chore(starfish): Remove the count if query (#49097) by @shruthilayaj
  1297. - fix(issue-platform): Fix `get_event_by_id` to correctly return occurrence information for transactions (#49059) by @wedamija
  1298. - feat(starfish): Compare span samples to p50 baseline in table column (#48959) by @0Calories
  1299. - feat(source-maps): adds new case for source map debugging (#49061) by @scefali
  1300. - feat(starfish): Add releases to db module (#48782) by @wmak
  1301. - ref(trends): Impose strict top event limit (#49098) by @udameli
  1302. - feat(replays): Log to stdout when a slow click event is detected (#48775) by @cmanallen
  1303. - fix(txnames): Revert high threshold for running the clusterer (#49087) by @jjbayer
  1304. - instr(txnames): Count number of discovered rules (#49085) by @jjbayer
  1305. - Allow defining different symbolicator for JS LPQ (#49072) by @Swatinem
  1306. - feat(transaction-summary): Add analytics to track biases sufficiency assessment (#48865) by @priscilawebdev
  1307. - chore(hybrid-cloud): save outbox messages when creating them for org members (#49055) by @dashed
  1308. - feat(api): Allow overriding default pagination limits for testing (#49056) by @evanpurkhiser
  1309. - feat(js): Add useMembers hook (#49043) by @evanpurkhiser
  1310. - feat(issues): Add archived issue tag (#49044) by @scttcper
  1311. - fix(issues): Remove resolve/archive/ignore action icons (#49058) by @scttcper
  1312. - ref(pageFilters): Add ability to disable persistence (#49048) by @vuluongj20
  1313. - ref(js): Export useTeams as a named export (#49052) by @evanpurkhiser
  1314. - chore(roles): Pixel Matters for Project/Team Settings Pages (#49042) by @leedongwei
  1315. - ref(hc): Create ControlOption to support cross silo options (#48833) by @corps
  1316. - chore(issue-platform): Remove project level option for creating issues via platform (#48911) by @wedamija
  1317. - fix(issue-states): increase time limits for auto transitioning to ongoing issues (#49033) by @barkbarkimashark
  1318. _Plus 1059 more_
  1319. 23.4.0
  1320. ------
  1321. ### Codecov Integration V2
  1322. This is the work post-MVP release for the Codecov Integration, with UI and performance improvements and a new CTA.
  1323. By: @snigdhas (#46523, #46463, #46460, #46420, #46421, #46416, #46414, #46401, #46294), @scttcper (#46234), @armenzg (#46257)
  1324. ### JavaScript SDK Dynamic Loader (ongoing)
  1325. By: @mydea (#46996, #46995, #46994)
  1326. ### Escalating Issues V1 (ongoing)
  1327. This will allow marking an issue as archived until escalating.
  1328. By: @jangjodi (#47333, #46636), @snigdhas (#47129, #47039, #46845), @barkbarkimashark (#47101, #47100, #47094, #47058, #47053), @armenzg (#46517), @scttcper (#46705, #46639), @NisanthanNanthakumar (#46205, #45971)
  1329. ### Various fixes & improvements
  1330. - fix(crons): Pass environment to edit monitor page (#47435) by @davidenwang
  1331. - chore(js): Convert PackageLink to a FC (#47299) by @evanpurkhiser
  1332. - chore(deps): bump cronstrue from 2.23.0 to 2.26.0 (#47431) by @dependabot
  1333. - feat(worflow): Track unmerge issue usage (#47423) by @scttcper
  1334. - feat(rulesnooze): Update endpoint to include info about if snooze is for all (#47414) by @roggenkemper
  1335. - feat(analytics): Add user feedback info to issue analytics (#47296) by @malwilley
  1336. - fix(issue-platform): Fix bug where searching by issue shortname in discover returns too many results (#47406) by @wedamija
  1337. - feat(perf-issues): initialize giant http payload detector (#47264) by @DominikB2014
  1338. - feat(rulesnooze): Don't notify if rule is snoozed (#47197) by @roggenkemper
  1339. - feat(trends): Update the breakpoint endpoint and request shape (#47412) by @udameli
  1340. - Document 'download' query parameter (#47247) by @alyssa-glean
  1341. - feat(replays): Add replays/:id/clicks/ endpoint for searching for click node and timestamp metadata (#47332) by @cmanallen
  1342. - feat(code mapping): Derive code mappings for more distinct issues (#47345) by @lobsterkatie
  1343. - chore(profiling): End profiling beta alert (#47249) by @Zylphrex
  1344. - feat(profiling): Link from profile summary to transaction summary (#47328) by @Zylphrex
  1345. - chore(perf): Remove old feature flag (#47394) by @udameli
  1346. - feat(releasehealth): Switch mget to get for Redis Cluster compatibility (#46210) by @ayirr7
  1347. - fix(breadcrumbs): Resize breadcrumb rows when expanding object properties (#47369) by @malwilley
  1348. - ref(escalating-issues): Add logs and increase freq of cron job (#47403) by @jangjodi
  1349. - deps(ui): Upgrade to TypeScript v5 (#47405) by @scttcper
  1350. - feat(email): Add X-SMTPAPI category to email headers (#47352) by @mbauer404
  1351. - chore(js): Add comment to js-sdk-loader eslint config (#47340) by @evanpurkhiser
  1352. - fix(ui): Check type is number when using `>` `<` (#47360) by @scttcper
  1353. - feat(hc): Send and receive RPCs over network (#47046) by @RyanSkonnord
  1354. _Plus 745 more_
  1355. 23.3.1
  1356. ------
  1357. ### Various fixes & improvements
  1358. - fix(dynamic-sampling):Set low volume transaction boost default to True (#46179) by @RaduW
  1359. - feat(replays): Add backend support for `session-replay-network-details` feature (#46200) by @ryan953
  1360. - fix(roles): check for existence of org roles from team (#46197) by @cathteng
  1361. - feat(escalating-issues): Add escalating group status (#45965) by @NisanthanNanthakumar
  1362. - feat: Add a simple endpoint to lookup artifacts (#45757) by @Swatinem
  1363. - fix(profiling): fix profiling timeout (#46193) by @JonasBa
  1364. - fix(db-issue): Add db detector (#46154) by @wmak
  1365. - chore(hybrid-cloud): Add outbox_runner to outbox tests (#46155) by @dashed
  1366. - chore(hybrid-cloud): Update user type for sync_assignee_outbound (#46160) by @dashed
  1367. - ref(profiling): Replace DataDog metric by a Sentry tag (#46156) by @phacops
  1368. - fix(dashboards): Clear GroupStore when unmounting dashboard (#46189) by @edwardgou-sentry
  1369. - fix(profiling): Show p75 only for suspect functions table (#46140) by @Zylphrex
  1370. - feat(flag): Add flag for onboarding product selection - (#46184) by @priscilawebdev
  1371. - ref(sourcemaps): Add date_uploaded field to bundle (#46172) by @iambriccardo
  1372. - fix(sourcemaps): Change reverse sql type (#46180) by @iambriccardo
  1373. - ref(sourcemaps): Remove date_last_accessed field from db (#46118) by @iambriccardo
  1374. - chore(oss): add license to api docs spectacular ports (#46164) by @JoshFerge
  1375. - fix(test): fix flake when time rolls to the next day (#46166) by @barkbarkimashark
  1376. - feat(issue-platform): Hook up noise reduction config to occurrence ingestion (#46159) by @wedamija
  1377. - chore(issue-platform): Remove unused features (#46161) by @wedamija
  1378. - fix(codecov): Change endpoint for has_integration check (#46127) by @snigdhas
  1379. - fix(profiling): Typo in format name sampled vs sample (#46150) by @Zylphrex
  1380. - chore: Add missing license for jsonfield (#46148) by @markstory
  1381. - fix(workflow): Add `ref_fallback` to issue details analytics (#46125) by @scttcper
  1382. _Plus 233 more_
  1383. 23.3.0
  1384. ------
  1385. ### Stacktrace Codecov V2 (ongoing)
  1386. This is the work post-MVP release.
  1387. By: @armenzg (#44827)
  1388. ### JavaScript SDK Dynamic Loader (ongoing)
  1389. By: @AbhiPrasad (#44496)
  1390. ### Various fixes & improvements
  1391. - fix(ecosystem): Preserve codeowners filters on update (#45810) by @scttcper
  1392. - chore(trace_view): Add perf issues to the mock trace (#45794) by @wmak
  1393. - feat(dynamic-sampling): Add prioritise low volume transaction rules [TET-736] (#45635) by @RaduW
  1394. - ref(onboarding): Update experiment segments (#45843) by @priscilawebdev
  1395. - ref(onboarding): Update copy (#45830) by @priscilawebdev
  1396. - ref(dynamic-sampling): Update Health Check copy (#45826) by @ale-cota
  1397. - chore(commit-context): Flag cleanup (#45804) by @snigdhas
  1398. - ref(compactSelect): Maintain menu width while searching (#45356) by @vuluongj20
  1399. - ref(outcomes) Add methods to build outcomes queries without django (#45730) by @markstory
  1400. - feat(compactSelect): Add optional menu footer (#45339) by @vuluongj20
  1401. - ref(dynamic-sampling): Add onboarding experiement to the ds page (temp test) - (#45827) by @priscilawebdev
  1402. - chore(view-hierarchy): Remove frontend feature flags (#45761) by @narsaynorath
  1403. - chore(dashboards): Reintroduce release widget feature flag (#45791) by @shruthilayaj
  1404. - fix (dyn-sampling): Change schedule interval for prioritise by project task [TET-788] (#45821) by @andriisoldatenko
  1405. - chore(hybrid-cloud): Deprecate mediator destroyers (#45656) by @corps
  1406. - feat(onboarding): Add view sample error button new design - (#45820) by @priscilawebdev
  1407. - feat(onboarding): Add feature flag to control the View Sample Error button - (#45818) by @priscilawebdev
  1408. - fix(onboarding): Fix issue when first error sent (#45817) by @priscilawebdev
  1409. - feat(source-maps): Add debug ids UI - (#45711) by @priscilawebdev
  1410. - feat(sourcemaps): Add endpoint for listing all artifact bundles of a project (#45751) by @iambriccardo
  1411. - chore(hybrid-cloud): Backfill installation_id to service hooks (#45800) by @corps
  1412. - fix(issue-platform): Explicitly pass `culprit` as part of the occurrence, and store `subtitle` correctly (#45809) by @wedamija
  1413. - feat(crons): Explain crontab syntax in monitor form (#45801) by @davidenwang
  1414. - ref(hybrid-cloud): Denormalize user avatars 1/3 (#45685) by @mikejihbe
  1415. _Plus 792 more_
  1416. 23.2.0
  1417. ------
  1418. ### Stacktrace Codecov MVP
  1419. Related to https://github.com/getsentry/sentry/discussions/42399
  1420. By: @snigdhas (#43819, #43667, #43675), @jangjodi (#43746)
  1421. ### JavaScript SDK Dynamic Loader (ongoing)
  1422. By: @AbhiPrasad (#44492, #44346, #44228)
  1423. ### Various fixes & improvements
  1424. - perf(sentry): Add optional referrer to query.search for granularity (#44585) by @k-fish
  1425. - bug(replay): Do not render the list page until project data has loaded (#44623) by @ryan953
  1426. - fix(ui) Fix navigation between customer-domain accounts (#44625) by @markstory
  1427. - feat(codeowners): [BE] Allow project members to edit project owner rules (#44508) by @jangjodi
  1428. - ref(heartbeat): Update modal copy (#44658) by @priscilawebdev
  1429. - Reverts for INC-307 (#44654) by @beezz
  1430. - bump(dynamic-sampling): Bump sentry-relay to 0.8.18 (#44648) by @iambriccardo
  1431. - feat(contexts): Add OpenTelemetry context (#44605) by @AbhiPrasad
  1432. - fix: Avoid logging a `bad_report` for .NET events (#44291) by @Swatinem
  1433. - chore(hybrid-cloud): Api* => Rpc* (#44646) by @corps
  1434. - ref(hybrid-cloud): Isolate alert rules functionality by silo (#44644) by @mikejihbe
  1435. - fix(api): Don't try and convert_args when http_method_not_allowed (#44635) by @evanpurkhiser
  1436. - ref(api): Consistent relative endpoints import (#44640) by @evanpurkhiser
  1437. - feat(profile-issues): Add profile category/type to search autocomplete (#44548) by @malwilley
  1438. - fix(ui): Bring back Australia timezone (#44634) by @evanpurkhiser
  1439. - feat: Deprecate legacy post process forwarder (#44631) by @lynnagara
  1440. - fix(api): Remove inclusion of CHECKIN_ID in monitor check-in POST (#44630) by @evanpurkhiser
  1441. - fix(source-maps): fixes too many values to unpack error in ArtifactSource (#44624) by @roggenkemper
  1442. - ref(rules): Catch environment not existing (#44553) by @ceorourke
  1443. - feat(analytics): improve analytics for soure map debugging (#44626) by @scefali
  1444. - ref(tabs): Export `Item` as property of `TabList` & `TabPanels` (#44620) by @vuluongj20
  1445. - feat(ui): Switch translate tct return type to react element (#44610) by @scttcper
  1446. - feat: adds tracking for setup wizard (#44619) by @scefali
  1447. - feat(team-roles): Amend PUT on OrganizationMemberDetailsEndpoint (#44599) by @leedongwei
  1448. _Plus 637 more_
  1449. 23.1.1
  1450. ------
  1451. ### Post-GA fixes and improvements for derived code mappings
  1452. This will track work that are known issues that will be handled after the GA.
  1453. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1454. By: @armenzg (#43323, #43325, #43310)
  1455. ### Stacktrace Codecov MVP (ongoing)
  1456. Related to https://github.com/getsentry/sentry/discussions/42399
  1457. By: @snigdhas (#43650, #43649, #43404, #43353, #43201), @jangjodi (#43032, #43517, #43407, #43116)
  1458. ### Various fixes & improvements
  1459. - ci(acceptance): Replace selenium finalizer with yield (#43711) by @mattgauntseo-sentry
  1460. - test(profiles): test sample stats and raw weights across formats (#43685) by @JonasBa
  1461. - fix(release_health) : bad granularity was causing limit validation error in MetricsLayer (#43729) by @RaduW
  1462. - ref: upgrade structlog (#43680) by @asottile-sentry
  1463. - ref(ui) Remove error for missing router context (#43693) by @markstory
  1464. - ref(perf-issues): Increase unc asset duration threshold (#43722) by @k-fish
  1465. - hotfix: handle empty series returns from get_series. (#43721) by @RaduW
  1466. - Revert "feat(codecov): Get commit sha from Git blame (#42978)" (7d918eb7) by @getsentry-bot
  1467. - feat(perf-issues) Add project options for consecutive db (#43701) by @DominikB2014
  1468. - fix(perf-issues): ensure php is not allowed to detect issues (#43694) by @DominikB2014
  1469. - feat(codecov): Get commit sha from Git blame (#42978) by @jangjodi
  1470. - ref(mep): Allow up to 10 custom measurements (#43719) by @jan-auer
  1471. - (perf-issues) Add detection rate project option to UI (#43698) by @DominikB2014
  1472. - fix(txnames): Skip deleted projects (#43716) by @jjbayer
  1473. - feat(release-health): Switch release health backend to MetricsLayer (#43545) by @RaduW
  1474. - chore(hybrid-cloud): remove region to control, use outbox (#43361) by @corps
  1475. - feat(hc): Use hybrid cloud services in AuthIdentityHandler (#43035) by @RyanSkonnord
  1476. - fix(sourcemaps): ease check on valid url and add data for invalid url issue (#43709) by @roggenkemper
  1477. - test(acceptance): Reduce flakiness by waiting for requests to complete (#43486) by @mattgauntseo-sentry
  1478. - ref(hybrid-cloud): test for both urls in MonitorCheckinDetails (#43690) by @cathyteng17
  1479. - ui(codecov): Fix codecov legend border (#43704) by @snigdhas
  1480. - fix(tasks): Do not ignore exception by default (#43696) by @Zylphrex
  1481. - ref: retry on 500s in docker pulls (#43700) by @asottile-sentry
  1482. - Revert "CI(dispatch): Switch to merge commit sha where possible (#43570)" (f2dd50ad) by @getsentry-bot
  1483. _Plus 285 more_
  1484. 23.1.0
  1485. ------
  1486. ### Derived Code Mappings (GA Release - JS and Python)
  1487. Python is in EA already. We will first add JS to EA and then GA both of them.
  1488. For JS, this will only apply to stacktraces that have source maps applied, otherwise, it is not possible to derive code mappings.
  1489. Read https://github.com/getsentry/rfcs/pull/16 for more details.
  1490. By: @armenzg (#42302)
  1491. ### Stacktrace linking and code mapping improvements (ongoing)
  1492. Various improvements to configuring Code Mappings by a customer.
  1493. This milestones is simply to track the various related PRs.
  1494. By: @armenzg (#43105, #43104, #42810)
  1495. ### Post-GA fixes and improvements for derived code mappings (ongoing)
  1496. This will track work that are known issues that will be handled after the GA.
  1497. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1498. By: @armenzg (#43265, #43199, #42554, #42510, #42544, #42540, #42511, #42487)
  1499. ### Stacktrace Codecov Integration (ongoing)
  1500. Related to https://github.com/getsentry/sentry/discussions/42399
  1501. By: @snigdhas (#43114, #43025, #43024, #43015)
  1502. ### Various fixes & improvements
  1503. - Revert "fix(domains) Remove usage or params.orgId in search (#43205)" (2fc1398b) by @getsentry-bot
  1504. - ref(js): Convert events/userFeedback to a FC (#43283) by @evanpurkhiser
  1505. - feat(replays): Remove calendar icon from Replays list table (#43252) by @ryan953
  1506. - feat(replays): Remove the icon from the "Open Replay" preview in Issues (#43251) by @ryan953
  1507. - ref(ui): Visually improve PageHeadingQuestionTooltip (#43277) by @evanpurkhiser
  1508. - chore(ui): Upgrade babel, babel-loader, core-ui (#43286) by @scttcper
  1509. - ref(scim): Use transaction instead of span (#43287) by @AniketDas-Tekky
  1510. - feat(modal) Consolidate close prevention props (#43258) by @malwilley
  1511. - fix(integrations): Use services to get organization data (#43284) by @leeandher
  1512. - fix(useOverlay): Only enable maxSize modifier when open (#43193) by @vuluongj20
  1513. - fix(domains) Use routing params in join-request route (#43271) by @markstory
  1514. - fix(integrations): Use organization_id for finding the integration (#43279) by @leeandher
  1515. - ref(js): Remove default Button export (#43280) by @evanpurkhiser
  1516. - ref(js): Consistent spacing in eventEntry (#43230) by @evanpurkhiser
  1517. - ref(replays): Rename Replay API fields to be snake_case and new names (#43206) by @ryan953
  1518. - feat(replays): Convert fields to snake-case and add additional query aliases (#43194) by @cmanallen
  1519. - feat(anr-rate): Update ANR rate defaults on project details (#43248) by @shruthilayaj
  1520. - bug: Fix import of button (#43272) by @ryan953
  1521. - Revert "ref(js): Remove default Button export (#43254)" (9f77d654) by @getsentry-bot
  1522. - ci: Skip pip install when we have a cache hit in venv action (#43267) by @mattgauntseo-sentry
  1523. - security(codeql): set codeql to weekly scans, on prs, and on master b… (#43213) by @mdtro
  1524. - revert-revert: feat(hybrid-cloud): Move Integration/OrgIntegration to Control and implement IntegrationService (#43183) by @leeandher
  1525. - chore: Add $schema to package.json + tsconfig.json (#43235) by @evanpurkhiser
  1526. - ref(js): Export named Alert (#43255) by @evanpurkhiser
  1527. _Plus 621 more_
  1528. 22.12.0
  1529. -------
  1530. ### Derived Code Mappings (EA release - Python only)
  1531. This adds the ability of deriving code mappings automatically for all orgs using Python and Github at first.
  1532. See RFC for details: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1533. By: @armenzg (#41562, #41523, #41466, #41464, #41384)
  1534. ### Derived Code Mappings (GA Release - JS and Python) (ongoing)
  1535. Python is in EA already. We will first add JS to EA and then GA both of them.
  1536. For JS, this will only apply to stacktraces that have source maps applied, otherwise, it is not possible to derive code mappings.
  1537. Read https://github.com/getsentry/rfcs/pull/16 for more details.
  1538. By: @armenzg (#42293, #42249, #42155, #42161, #42147, #42130, #42082, #42069, #41777, #41933, #41909, #41794, #41771, #41733, #41706, #41718, #41639, #41671, #41648), @jangjodi (#42192)
  1539. ### Stacktrace linking and code mapping improvements (ongoing)
  1540. Various improvements to configuring Code Mappings by a customer.
  1541. This milestones is simply to track the various related PRs.
  1542. By: @scttcper (#41582, #41585, #41529, #41512, #41474, #41299, #41403, #41372), @snigdhas (#41465), @armenzg (#41409)
  1543. ### Post-GA fixes and improvements for derived code mappings (ongoing)
  1544. This will track work that are known issues that will be handled after the GA.
  1545. See related RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1546. By: @armenzg (#42348, #41857)
  1547. ### Stacktrace linking: Mobile Support (ongoing)
  1548. By: @jangjodi (#42117, #41936)
  1549. ### Various fixes & improvements
  1550. - ref(js): Remove enforceActOnUseLegacyStoreHook hack (#42370) by @evanpurkhiser
  1551. - feat(java): Add feature flag for deobfuscating java exception values (#42353) by @edwardgou-sentry
  1552. - feat(profiling): add profiling-flamechart-spans flag (#42357) by @eliashussary
  1553. - feat(node): fix package for windows path (#42325) by @JonasBa
  1554. - feat(profiling): add transaction context (#42347) by @JonasBa
  1555. - ref(replays): Move replay-events-meta test into correct folder (#42324) by @ryan953
  1556. - Revert "chore(routes): Remove support for deprecated pre-Sentry 10 routes" (#42374) by @dashed
  1557. - chore(anr-rate): Add option for abnormal_mechanism extraction flag (#42367) by @shruthilayaj
  1558. - chore(hybrid-cloud): test model decorators and fk breakage (#42254) by @corps
  1559. - chore(transactions): Set the entity argument to default "false" (#42371) by @olksdr
  1560. - ref(contexts): Convert chunck from class to function (#42246) by @priscilawebdev
  1561. - feat(txnames): Sort rules in project options (#42372) by @jjbayer
  1562. - chore(js): useApi in groupEventDetails (#42355) by @evanpurkhiser
  1563. - fix(profiling): remove wasteful rect (#42351) by @JonasBa
  1564. - feat(issues): Add frontend typings for issue occurrence data (#42329) by @malwilley
  1565. - ref(hybrid-cloud): use organization_slug in MonitorCheckIns (#42356) by @cathyteng17
  1566. - ref(replays): Create NetworkHeaderCell for Replay Details (#42240) by @ryan953
  1567. - ref(profiling): rm profiling-onboarding-checklist feature flag (#42354) by @eliashussary
  1568. - ref(replays): Refactor Replay network table sorting (#42235) by @ryan953
  1569. - fix(profiling): fix zoom when frame is in view (#42350) by @JonasBa
  1570. - feat(discover-quick-context): Added issue title (#42343) by @Abdkhan14
  1571. - chore(hybrid-cloud): use organization_slug in MonitorDetails (#42300) by @cathyteng17
  1572. - (perf-issues) add fingerprinting to consecutive db detector (#42339) by @DominikB2014
  1573. - frontend(invite): update invite link helper text (#42344) by @mdtro
  1574. _Plus 731 more_
  1575. 22.11.0
  1576. -------
  1577. ### Derived code mappings (Internal Release) (ongoing)
  1578. This milestones add support for creating Python code mappings automatically for orgs with the Github integration installed.
  1579. This milestone initially focuses on Python projects.
  1580. Future work described in this RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1581. 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)
  1582. ### Derived code mappings (EA release - Python only) (ongoing)
  1583. This adds the ability of deriving code mappings automatically for all orgs using Python and Github at first.
  1584. See RFC for details: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1585. By: @armenzg (#41313, #41199, #41132, #41125, #41083), @snigdhas (#41097, #41038, #41080, #41003, #41000, #40991, #40979)
  1586. ### Various fixes & improvements
  1587. - feat(profiling): Add release to profile payload (#41282) by @Zylphrex
  1588. - fix(tests): escape `.` in regex passed to findByText (#41391) by @mdtro
  1589. - test(js): Convert DashboardList to RTL (#41375) by @malwilley
  1590. - test(js): Convert SentryApplicationDetails to RTL (#41378) by @evanpurkhiser
  1591. - feat(profiling): profiling onboarding sidebar (#41322) by @eliashussary
  1592. - feat(useStacktraceLink): add hook to fetch stack trace link (#41269) by @JonasBa
  1593. - dep(profiling): Bump sentry sdk for updated profiler (#41324) by @Zylphrex
  1594. - feat(analytics): Record analytics for first profile sent (#41315) by @Zylphrex
  1595. - perf(users-endpoint): Improve users endpoint performance more (#41347) by @Zylphrex
  1596. - fix(metrics): Use parameterize instead of for loop in test (#41316) by @iambriccardo
  1597. - ref(perf-issues): Add projectoption for enabling individual detector (#41328) by @k-fish
  1598. - ref(contexts): Prettify only known contexts - (#41379) by @priscilawebdev
  1599. - ci(jest): regenerate jest-balance.json (#41377) by @getsentry-bot
  1600. - fix(code-mappings): Always add a trailing backslash for codemappings (#41330) by @snigdhas
  1601. - fix(replays): Adjust Replay Details layout(s) dimensions (#41331) by @jesus4497
  1602. - test(js): Convert ManageDashboards test to RTL (#41352) by @malwilley
  1603. - feat(monitors): Tag error events with monitor id (#41291) by @davidenwang
  1604. - ref(access): Dataclass to represent (requires_sso, sso_is_valid) pairs (#41239) by @RyanSkonnord
  1605. - test(js): Convert organizationAuthList to RTL (#41309) by @evanpurkhiser
  1606. - feat(hybrid-cloud): Add /user-feedback/* Django route (#41326) by @dashed
  1607. - test(js): Convert teamKeyTransactionButton to RTL (#41308) by @evanpurkhiser
  1608. - Customize pip-compile header (#41334) by @atugushev
  1609. - ref: fix typing in sentry.integrations.slack (#41314) by @asottile-sentry
  1610. - feat(hybrid-cloud): Add /issues/* Django route (#41333) by @dashed
  1611. _Plus 1017 more_
  1612. 22.10.0
  1613. -------
  1614. ### Automatic code mappings for Python/Github projects (ongoing)
  1615. This milestones add support for creating Python code mappings automatically for orgs with the Github integration installed.
  1616. Future work described in this RFC: https://github.com/getsentry/rfcs/blob/main/text/0016-auto-code-mappings.md
  1617. By: @armenzg (#39975, #39750)
  1618. ### Various fixes & improvements
  1619. - Revert "feat(commit-context): Refactor Issue Owner auto-assignment (#40048)" (#40081) by @wedamija
  1620. - ref(emails): Update perf issue email subject (#40072) by @ceorourke
  1621. - test(js): Convert AcceptOrganizationInvite to RTL (#39809) by @evanpurkhiser
  1622. - ref: improve pin_github_action ref matching (#40067) by @asottile-sentry
  1623. - test(ui): Convert SelectAsyncField test to RTL (#40060) by @malwilley
  1624. - test(js): Convert TableField test to RTL (#40064) by @malwilley
  1625. - deps(ui): Upgrade to jest v29 (#40070) by @scttcper
  1626. - test: Use initialProps when testing hooks with reactHooks.renderHook (#39532) by @ryan953
  1627. - feat(hybrid-cloud): Add a test for file upload (#39931) by @AniketDas-Tekky
  1628. - feat(ui): Add aria-describedby to form inputs (#40037) by @evanpurkhiser
  1629. - feat(commit-context): Refactor Issue Owner auto-assignment (#40048) by @NisanthanNanthakumar
  1630. - chore(hybrid-cloud): ORM decorators updated. (#40022) by @corps
  1631. - ref(email): Add performance issue alert email template (#39948) by @ceorourke
  1632. - test(js): Rebalance tests (#40036) by @evanpurkhiser
  1633. - fix(all-events) issue where events tab makes extra api call (#40056) by @DominikB2014
  1634. - feat(all-events) Add minidump all events (#40049) by @DominikB2014
  1635. - feat(perf_issues): Only send error issues to digests system (#40050) by @wedamija
  1636. - feat(commit-context): Support GitLab (#39381) by @NisanthanNanthakumar
  1637. - ref: Mark batching kafka consumer as deprecated (#40044) by @lynnagara
  1638. - ref(gitlab): No need to show token (#40045) by @armenzg
  1639. - Add all inclusive resources (#40047) by @0Calories
  1640. - feat(charts): Add auto-generated aria labels (#39653) by @vuluongj20
  1641. - fix(auth): Fix `device-failed` position (#40011) by @vuluongj20
  1642. - feat(replays): Add Slowest Transaction Column To Transaction Replay Table (#39930) by @danecando
  1643. _Plus 916 more_
  1644. 22.9.0
  1645. ------
  1646. ### Various fixes & improvements
  1647. - fix(js): Avoid constructing API inside fetchOrganizationDetails (#38859) by @evanpurkhiser
  1648. - feat(codeowners): Add assignee dropdown codeowners copy (#38832) by @scttcper
  1649. - test(ui): Convert project install tests to RTL (#38866) by @scttcper
  1650. - feat(dashboards): widgets use mep setting provider to determine if requests should be metricsEnhanced or not (#38810) by @edwardgou-sentry
  1651. - feat(replays): Change replay event tags type and update UI (#38604) by @jesus4497
  1652. - ref: Continue typing eventstream (#38858) by @lynnagara
  1653. - feat(sidebar): open up broadcasts if #whats-new is the hash (#38838) by @scefali
  1654. - Added question tooltip beside processed baseline toggle. (#38875) by @Abdkhan14
  1655. - feat(perf-issues): Add analytics event to count num of perf issues on issues stream page (#38876) by @0Calories
  1656. - feat(metrics): Add `count_web_vitals` to metrics layer [TET-161] (#38873) by @ahmedetefy
  1657. - feat(dashboard): Flip top level query filter flag (#38829) by @narsaynorath
  1658. - ref(dashboards): Delete deprecated dashboard tests (#38872) by @edwardgou-sentry
  1659. - chore(perf-issues): Add issue creation rate limiter metrics (#38874) by @udameli
  1660. - ref(perf-issues): prettify test event JSON (#38871) by @mjq-sentry
  1661. - feat(perf_issues): Make `GroupTagKeyValuesEndpoint` work with perf issues (#38865) by @wedamija
  1662. - feat(profiling): add links to profiledetails (#38824) by @eliashussary
  1663. - fix(perf-issues): N+1 with odd number of potential sources missed (#38862) by @mjq-sentry
  1664. - feat(perf_issues): Default `sentry:performance_issue_creation_rate` to 1.0, and gate perf issue creation using `performance-issues-ingest` (#38864) by @wedamija
  1665. - feat(perf_issues): Explicitly hide performance issues from search if feature flag is disabled (#38863) by @wedamija
  1666. - feat(perf-issues): Add Performance Issues analytics (#38807) by @0Calories
  1667. - feat(dashboards): Flip grid layout feature flag (#38827) by @narsaynorath
  1668. - feat(metrics): Support rate for derived metric [TET-129 TET-127] (#38792) by @ahmedetefy
  1669. - feat(metrics): Register new option [sns-1660] (#38816) by @untitaker
  1670. - fix(datascrubbing): Limit sensitiveFields (#38803) by @jjbayer
  1671. _Plus 746 more_
  1672. 22.8.0
  1673. ------
  1674. ### Various fixes & improvements
  1675. - fix(breadcrumbsFilter): Fix level tag crop issue (#37777) by @vuluongj20
  1676. - ref(dropdownMenu): Mark as deprecated (#37319) by @vuluongj20
  1677. - feat(workflow): Remove `duplicate-alert-rule` flag (#37489) by @scttcper
  1678. - fix(dashboards): Fix custom metrics not displaying with units correctly in widget viewer(#37807) by @edwardgou-sentry
  1679. - feat(replays): New column size and improve of a11y (#37765) by @jesus4497
  1680. - ref(perf): Add duplicate detection on group hash (#37787) by @k-fish
  1681. - fix(profiling): Profiling stats response for no projects (#37772) by @Zylphrex
  1682. - feat(replays): Normalize resources with client expectations (#37708) by @cmanallen
  1683. - feat(dashboard-filters): Save and expose releaseId in dashboards (#37779) by @narsaynorath
  1684. - ref: upgrade confluent-kafka to 1.9.2 (#37733) by @asottile-sentry
  1685. - pass resolution time to get_files_changed_in_releases() (#37800) by @komal-saini
  1686. - don't call flagr on this feature flag since we'll be hard-coding the handler (#37799) by @barkbarkimashark
  1687. - fix(suspect-resolutions): Get files changed in releases within 5h time-window (#37789) by @komal-saini
  1688. - fix: explicitly define app label (#37795) by @MeredithAnya
  1689. - fix(integrations): don't remove functions before they're actually removed (#37793) by @vpandiarajan20
  1690. - ref(indexer): Add postgres, cloudspanner modules (#37771) by @MeredithAnya
  1691. - Sentry Functions: Backend Webhook Integration (#37205) by @vpandiarajan20
  1692. - ref(indexer): Deprecate DbKey (#37790) by @lynnagara
  1693. - ref(suspect-resolutions): refactor code around (#37775) by @barkbarkimashark
  1694. - fix(dashboard): Pass location to handleAddQueryToDashboard (#37785) by @shruthilayaj
  1695. - fix(releases): filter out releases with projects by project membership instead of access (#37495) by @barkbarkimashark
  1696. - feat(suspect-resolutions): track the suspect resolutions algo changes in analytics events (#37778) by @barkbarkimashark
  1697. - Revert "fix(mep): Missed a tag resolver (#37768)" (#37782) by @k-fish
  1698. - fix(ui): integrations text alignment (#37776) by @robinrendle
  1699. _Plus 789 more_
  1700. 22.7.0
  1701. ------
  1702. ### Various fixes & improvements
  1703. - ref(replays): Refactor MouseTracking component into a react hook (#36710) by @ryan953
  1704. - feat(release-activity): backend support for tracking release activity (#36608) by @barkbarkimashark
  1705. - feat(grouping): Add support for automatic grouping updates (#36358) by @mitsuhiko
  1706. - feat(replays): add session replays endpoints, proxy logic (#36631) by @JoshFerge
  1707. - fix(dashboards): Open in Discover missing in Default Dashboard (#36728) by @narsaynorath
  1708. - chore(deps): Upgrade @sentry/* JS SDKs from 7.6.0 to 7.7.0 (#36727) by @AbhiPrasad
  1709. - fix(mep): Remove the granularity hacks (#36724) by @wmak
  1710. - chore(deps): Bump eslint-config-sentry 1.94 -> 1.95 (#36693) by @NisanthanNanthakumar
  1711. - fix(test) Allow the connection name to be defined by migration tests (#36712) by @markstory
  1712. - fix(perf) Disabled performance settings if denied access (#36675) by @DominikB2014
  1713. - fix: Remove potentially unnecessary pip installs (#36649) by @untitaker
  1714. - fix: Fix unbound variable if DEVENV_NO_REPORT=1 (#36650) by @untitaker
  1715. - test(issue-details): Fix issue details create comment test (#36715) by @Zylphrex
  1716. - ref(tags): Refactor the Tags table so the rows are independant of the styled title (#36711) by @ryan953
  1717. - fix(ci): include workdir to cache-dependency-path in setup-sentry (#36718) by @joshuarli
  1718. - bug(replays): Remove the custom replays navTabs, use core nav which supports with dark-mode (#36709) by @ryan953
  1719. - feat(replays): Cleanup unneeded tabs from the Replay Details page (#36706) by @ryan953
  1720. - feat(alert): Create metric alerts on project creation (#36582) by @Neo-Zhixing
  1721. - fix(devserver): Start both string indexers when metrics are enabled (#36682) by @untitaker
  1722. - feat(profiling): Ingest profile call trees (#36268) by @Zylphrex
  1723. - ref: replace legacy compat.map with list comprehensions (api) (#36694) by @asottile-sentry
  1724. - feat(integrations): Endpoint for SentryFunctions creation page (#36557) by @vpandiarajan20
  1725. - tests(mep): Add missing tests for entity subscription helper functions (#36689) by @wedamija
  1726. - feat(mep): Add `PerformanceMetricsEntitySubscription` for use with MEP alerts (#36653) by @wedamija
  1727. _Plus 760 more_
  1728. 22.6.0
  1729. ------
  1730. ### Various fixes & improvements
  1731. - ref: replace `import_submodules` with explicit `*` imports (#35677) by @asottile-sentry
  1732. - ref: fix linting of fixtures namespace (#35684) by @asottile-sentry
  1733. - ref(sentry app): Rewrite Sentry App Tests (#35664) by @ceorourke
  1734. - feat(discover): Support sum function while querying metrics in discover (#35576) by @edwardgou-sentry
  1735. - ref: re-enable pyc files now that we're on python 3 (#35678) by @asottile-sentry
  1736. - ref: allow explicit relative imports `from .json` (#35676) by @asottile-sentry
  1737. - fix(replays): fix error/durations on Replays for page >1 (#35647) by @SDaian
  1738. - ref(virtualizedtree): compute startindex and avoid wasteful iterations (#35621) by @JonasBa
  1739. - feat: Thread names (#35620) by @loewenheim
  1740. - Revert "Revert "ref: simplify and type flake8 plugin (#35645)" (#35651)" (#35673) by @asottile-sentry
  1741. - fix(cra-metrics): Count all users in metrics alerts (#34957) by @jjbayer
  1742. - feat: Run csharp/il2cpp events through symbolicator (#35615) by @Swatinem
  1743. - ref: upgrade boto* packages to fix conflicts (#34524) by @asottile-sentry
  1744. - ref(stack-trace): Update header style (#35670) by @priscilawebdev
  1745. - fix(relay): Defer cache invalidation up until after DB transaction (#35523) by @untitaker
  1746. - feat(dashboard): Add field options for table cols to config (#35622) by @shruthilayaj
  1747. - fix(projectconfig): Invalidation task deals with deleted project (#35668) by @flub
  1748. - ref(stack-trace): Add new design changes - (#35617) by @priscilawebdev
  1749. - chore(deps): bump @sentry/release-parser from 1.3.0 to 1.3.1 (#35657) by @dependabot
  1750. - chore(deps): bump core-js from 3.22.7 to 3.23.1 (#35656) by @dependabot
  1751. - ref(widget-builder): Replace Feedback Button with FeatureFeedback component (#35571) by @priscilawebdev
  1752. - chore(deps): bump echarts from 5.3.1 to 5.3.3 (#35658) by @dependabot
  1753. - build(deps): bump css-what from 5.0.0 to 5.1.0 (#35623) by @dependabot
  1754. - build(deps-dev): bump @types/node from 17.0.38 to 17.0.42 (#35598) by @dependabot
  1755. _Plus 746 more_
  1756. 22.5.0
  1757. ------
  1758. ### Replays v0 (ongoing)
  1759. By: @billyvg (#34407, #34388)
  1760. ### Various fixes & improvements
  1761. - ref(js): Convert DateTime to a FC (#34628) by @evanpurkhiser
  1762. - chore: Update logo for dark or light theme (#34229) by @mattjohnsonpint
  1763. - ref(js): Convert U2fContainer to a FC (#34630) by @evanpurkhiser
  1764. - ref(js): Convert discover eventsV2 Breadcrumbs to a FC (#34629) by @evanpurkhiser
  1765. - ref(js): Convert ProjectPerformanceContainer to a FC (#34624) by @evanpurkhiser
  1766. - ref(js): Convert gridEditable/sortLink to a FC (#34615) by @evanpurkhiser
  1767. - ref(js): Convert LoadingError to a FC (#34626) by @evanpurkhiser
  1768. - ref(js): Convert UnlinkedAlert to a FC (#34632) by @evanpurkhiser
  1769. - ref(js): Convert TagDistributionMeter to a FC (#34627) by @evanpurkhiser
  1770. - style(js): Small formatting adjustment to projectSettingsLayout (#34625) by @evanpurkhiser
  1771. - ref(js): Convert TeamAvatar to a FC (#34623) by @evanpurkhiser
  1772. - ref(js): Convert ValueComponent to a FC (#34620) by @evanpurkhiser
  1773. - ref(js): Convert BreadcrumbTitle to a FC (#34619) by @evanpurkhiser
  1774. - feat(onboarding): Customized cards (#34603) by @Neo-Zhixing
  1775. - ref(js): Convert OnboardingWizardSidebar to a FC (#34609) by @evanpurkhiser
  1776. - chore(dashboard): Default RH field to crash_free_rate (#34285) by @shruthilayaj
  1777. - fix(dashboard): Remove session.status as a filter tag (#34593) by @shruthilayaj
  1778. - fix(discover): Fix bug preventing saving queries with equation (#34580) by @wmak
  1779. - feat(crash_rate_alerts): Add logic to enforce session -> metric alerts (#34534) by @wedamija
  1780. - feat(replays): Better console messages + add string formatting (#34501) by @billyvg
  1781. - fix(dev): also patch invalid escape sequences in selenium.* (#34577) by @asottile-sentry
  1782. - Revert "fix(notifications): Use `metrics_key` (#34572)" (04f013dd) by @getsentry-bot
  1783. - ref(integrations): Update GH and GL feature descriptions (#34578) by @ceorourke
  1784. - feat(alertWizard): Show My Projects in project selector in alert wizard (#34583) by @mikellykels
  1785. _Plus 732 more_
  1786. 22.4.0
  1787. ------
  1788. ### Replays v0 (ongoing)
  1789. By: @ryan953 (#33313)
  1790. ### Various fixes & improvements
  1791. - debug(tests): Added some debugging for flakey ado test (#33632) by @AniketDas-Tekky
  1792. - ref(rate limits): Tag DD metric w/ rate limit type (#33621) by @ceorourke
  1793. - ref(access log): Add Datadog metrics (#33644) by @ceorourke
  1794. - ref(reflux): remove index signature (#33407) by @JonasBa
  1795. - feat(flamechart): allow rendering the chart on arbitrary x axis (#33577) by @JonasBa
  1796. - fix(ui): typo on languages (#33628) by @23RoMax
  1797. - fix(ui): Don't show project picker for alert wizard v3 (#33634) by @taylangocmen
  1798. - JSON syntax and OpenAPI spec fixes, to silence (some) swagger/openapi codegen errors. (#28396) by @tesueret-msft
  1799. - fix(alertStatus): Handle alert details page when no project (#33635) by @mikellykels
  1800. - fix(rate limit): Format 429 response correctly (#33629) by @ceorourke
  1801. - fix(workflow): Format metric date to number from query params (#33633) by @scttcper
  1802. - fix(ui): Add % to crash free sessions tooltip (#33624) by @mikellykels
  1803. - feat(replay): Implement the View in Fullscreen button (#33566) by @ryan953
  1804. - feat(workflow): Tidy up projects page design (#33608) by @mikellykels
  1805. - fix(sudo modal): no longer trying to log superuser access on sudo (#33622) by @maxiuyuan
  1806. - feat(perf): Add MEP to transaction summary (#32773) by @k-fish
  1807. - feat(dashboards): Update Release Health dataset to use sessions v2 (#33582) by @shruthilayaj
  1808. - ref(alerts): Use Badge in team filter (#33596) by @vuluongj20
  1809. - feat(onboarding): remove welcome page experiment and use new experience (#33616) by @scefali
  1810. - feat(workflow): Add Undo to issue removal toast (#33249) by @mikellykels
  1811. - ref(page-filters): All environments -> All env (#33568) by @davidenwang
  1812. - ref(perf): Move long-tasks to app-wide (#33614) by @k-fish
  1813. - fix(new-widget-builder-experience): Unnecessary dashboard visit requests (#33619) by @narsaynorath
  1814. - ref(page-filters): Move issues sort options inside table (#33590) by @vuluongj20
  1815. _Plus 771 more_
  1816. 22.3.0
  1817. ------
  1818. ### Various fixes & improvements
  1819. - feat(perf): Add MEP param to other landing requests (#32575) by @k-fish
  1820. - feat(devenv): set sentry SDK default off if dsn not provided and relay off (#32569) by @JoshFerge
  1821. - ref(dam): Use cols and aggregates (#32441) by @shruthilayaj
  1822. - feat(mep): Introduce p100 to the metric query builder (#32570) by @wmak
  1823. - feat(mep): Introduce the count_web_vitals functions to metrics (#32507) by @wmak
  1824. - ref(sdk): Move back to 5000ms idleTimeout (#32564) by @k-fish
  1825. - feat(dashboards): Widget Viewer beta badge and style (#32588) by @edwardgou-sentry
  1826. - chore: Add team-web-backend as CODEOWNERS of SDK (#32033) by @sl0thentr0py
  1827. - ref(ui): Improve uage of BookmarkStar (#32553) by @evanpurkhiser
  1828. - test(js): Convert organizationGroupDetails/action to RTL (#32598) by @evanpurkhiser
  1829. - chore(deps): bump pillow from 8.3.2 to 9.0.1 (#32552) by @dependabot
  1830. - chore(js): Upgrade babel from 7.15 -> 7.17 (#32016) by @evanpurkhiser
  1831. - feat(onboarding): Add onboarding welcome page experiment (#31733) by @scefali
  1832. - feat(codeowners): Decode base64 CODEOWNERS contents to utf-8 (#32582) by @NisanthanNanthakumar
  1833. - fix(projects): Use subText for project issues table's heading (#32597) by @vuluongj20
  1834. - fix(projects): Use subText for project card's score title (#32595) by @vuluongj20
  1835. - fix(ui): fixed size of open in issues button (#32573) by @robinrendle
  1836. - fix(ui): copy of alert details chart (#32587) by @robinrendle
  1837. - ref(ui): Make small UI changes to Button component (#31903) by @vuluongj20
  1838. - ref(page-filters): Add `alignDropdown` prop to environment selector (#32461) by @vuluongj20
  1839. - fix(tests): Another attempt to reduce flakiness of event frequency tests (#32580) by @wedamija
  1840. - fix(dashboards): Don't display edit button in Widget Viewer for prebuilt dashboards (#32567) by @edwardgou-sentry
  1841. - fix(design): Fix code css definition (#32589) by @dashed
  1842. - fix(discover): Add to Dashboard test from a Discover Query (#32577) by @edwardgou-sentry
  1843. _Plus 605 more_
  1844. 22.2.0
  1845. ------
  1846. ### Various fixes & improvements
  1847. - ref(ui) Move forms out of views/settings/components (#31785) by @markstory
  1848. - feat(perf): Show link to docs when some web vitals data is missing (#31764) by @0Calories
  1849. - feat(dashboard): Add duplicate widget button in dashboard edit mode (#31776) by @edwardgou-sentry
  1850. - feat(metrics): Add metrics to series transformer (#31783) by @matejminar
  1851. - ref(new-widget-builder-experience): Add visualization & query fields (#31786) by @priscilawebdev
  1852. - feat(profiling): add flamegraph tooltip (#31663) by @JonasBa
  1853. - ref(endpoints): SentryApp endpoints module (#31749) by @mgaeta
  1854. - feat(ui): Add empty state for for review tab (#31782) by @taylangocmen
  1855. - ref(models): Move more models to submodules (#31583) by @mgaeta
  1856. - Select weekly email template based on feature flag (#31802) by @Neo-Zhixing
  1857. - feat(workflow): Add alert-rule-status-page flag (#31796) by @scttcper
  1858. - fix(perf): Transaction is missing in perfForSentry (#31801) by @k-fish
  1859. - feat(codeowners): add api owners group to CODEOWNERS (#31739) by @JoshFerge
  1860. - meta(gha): Deploy workflow issue-routing-helper.yml (#31798) by @chadwhitacre
  1861. - chore(auth): Enable automatic IdP migration for all users (#31774) by @RyanSkonnord
  1862. - feat(ratelimits): Turn on rate limit enforcement (#31789) by @AniketDas-Tekky
  1863. - ref(perf): Switch VC component to use perf.now (#31795) by @k-fish
  1864. - ref(api): Refactor organization_member_team_details (#31751) by @RyanSkonnord
  1865. - fix(pagerduty): Fix logging params (#31794) by @ceorourke
  1866. - feat(dashboards): widget viewer modal feature flags (#31792) by @edwardgou-sentry
  1867. - feat(reports): Include transactions in project series histogram (#30839) by @Neo-Zhixing
  1868. - feat(apidocs): document SCIM member index post with new tooling (#31695) by @JoshFerge
  1869. - feat(apidocs): document SCIM member index get with new tooling (#31694) by @JoshFerge
  1870. - fix(alert-rule-action): Initialize formdata with existing values (#31710) by @NisanthanNanthakumar
  1871. _Plus 502 more_
  1872. 22.1.0
  1873. ------
  1874. ### Frontend Deploys (ongoing)
  1875. By: @billyvg (#28878)
  1876. ### Python: Add support for Apple arm64 development (ongoing)
  1877. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  1878. 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.
  1879. By: @armenzg (#30071, #29739, #29449, #29315, #29013, #28769, #28607)
  1880. ### Docker: Add support for Apple arm64 development (ongoing)
  1881. In order to do development for Sentry, we need to spin up various Docker containers.
  1882. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  1883. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  1884. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  1885. ### Connecting Dashboards and Discover (ongoing)
  1886. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  1887. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  1888. ### Various fixes & improvements
  1889. - ref(ratelimit): Added a config and changed a default (#31141) by @AniketDas-Tekky
  1890. - feat(dev): Fix `jest --watch` (#31138) by @billyvg
  1891. - ref(auth): Increase sample rate to 1.0 on idpmigration.* metrics (#31139) by @RyanSkonnord
  1892. - ref(pageFilters): Constrict types on updateParams better (#31073) by @evanpurkhiser
  1893. - feat(notifications): Nudge Notifications (#30409) by @mgaeta
  1894. - fix(ui): Team details doesn't load depending on navigation (#31081) by @mikellykels
  1895. - fix(snuba-tests): wrap tag key in Column (#31137) by @MeredithAnya
  1896. - test(ui): Convert globalSelectionLink to RTL (#31007) by @scttcper
  1897. - fix(suspect-spans): Make sure to query for frequency column (#31134) by @Zylphrex
  1898. - fix(echarts): Remove type casting from MapSeries (#31130) by @scttcper
  1899. - ref(webhooks): Use ApiClient (#31127) by @ceorourke
  1900. - fix(dashboard): Set line height on BigNumber to avoid clipping (#31136) by @narsaynorath
  1901. - fix(echarts): Use default echarts bar series type (#31129) by @scttcper
  1902. - fix(teamStats): Adjust gap between bar charts (#31119) by @scttcper
  1903. - fix(dashboards): TopN widgets Open in Discover opens with TopN display type (#31120) by @edwardgou-sentry
  1904. - ref(metrics): Consolidate wrappers around string indexer (#31051) by @untitaker
  1905. - ref(performance-metrics): Port failure Rate sidebar widget - Summary to metrics (#31014) by @priscilawebdev
  1906. - feat(profiling): move flamegraph and differential flamegraph (#30910) by @JonasBa
  1907. - ref(ui): Extract LoadingTriangle from LoadingIndicator (#31118) by @evanpurkhiser
  1908. - ref(notifications): Prepare Slack for sending Nudges. (#30765) by @mgaeta
  1909. - ref(integrations): Split up large file (#30786) by @mgaeta
  1910. - ref(analytics): Analytics Refactor + Types (#30555) by @mgaeta
  1911. - fix(teamStats): Fix link to alert details from triggered (#31124) by @scttcper
  1912. - ref(sentry apps): Don't raise IgnoreableSentryAppError (#31033) by @ceorourke
  1913. _Plus 2051 more_
  1914. 21.12.0
  1915. -------
  1916. ### Frontend Deploys (ongoing)
  1917. By: @billyvg (#28878)
  1918. ### Python: Add support for Apple arm64 development (ongoing)
  1919. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  1920. 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.
  1921. By: @armenzg (#30071, #29739, #29449, #29315, #29013, #28769, #28607)
  1922. ### Docker: Add support for Apple arm64 development (ongoing)
  1923. In order to do development for Sentry, we need to spin up various Docker containers.
  1924. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  1925. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  1926. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  1927. ### Connecting Dashboards and Discover (ongoing)
  1928. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  1929. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  1930. ### Various fixes & improvements
  1931. - feat(cra-metrics): Adds crash rate alerts over metrics [INGEST-629] [INGEST-632] (#30400) by @ahmedetefy
  1932. - fix(perf): Re-add onboarding for landing v3 (#30675) by @k-fish
  1933. - fix(performance-metrics): Handle null serie values (#30594) by @priscilawebdev
  1934. - feat(snql): Enable snql on facets performance endpoints (#30557) by @wmak
  1935. - fix(discover): Updates Discover widget modal to propagate global header selection to the dashboard view when submitting (#30641) by @edwardgou-sentry
  1936. - feat(suspect-spans): Allow specifying certain columns (#30576) by @Zylphrex
  1937. - fix(chart-unfurl): Fix daily top5 rendering (#30669) by @shruthilayaj
  1938. - ref(projectconfig_cache): Delete redis-blaster implementation, execute deletes faster (#30636) by @untitaker
  1939. - feat(dashboards): Open Library Modal in edit mode (#30591) by @shruthilayaj
  1940. - ref(js): Cleanup GSH getParams / utils (#30658) by @evanpurkhiser
  1941. - style(js): Improve comments formatting in AsyncComponent (#30667) by @evanpurkhiser
  1942. - ref(js): Convert (some of) redirectDeprecatedProjectRoute to a FC (#30640) by @evanpurkhiser
  1943. - ref(js): Convert ScrollToTop to a hook (#30652) by @evanpurkhiser
  1944. - ref(js): Remove UNSAFE_componentWillReceiveProps (#30663) by @evanpurkhiser
  1945. - ref(js): Remove unused getEndpoint (#30659) by @evanpurkhiser
  1946. - fix(ui): Span tree connector design (#30498) by @vuluongj20
  1947. - fix(js): Remove double `- Sentry` in Activity route title (#30626) by @evanpurkhiser
  1948. - feat(teamStats): Remove some team unresolved issue age buckets (#30650) by @scttcper
  1949. - style: Hover & focus state for buttons (#30654) by @vuluongj20
  1950. - fix(ui): Fix undefined markline data error (#30655) by @taylangocmen
  1951. - ref(js): Convert OrganizationCreate to a FC (#30638) by @evanpurkhiser
  1952. - chore(deps): bump typescript from 4.4.4 to 4.5.4 (#30615) by @dependabot
  1953. - feat(teamStats): Add team-insights-age-unresolved flag (#30644) by @scttcper
  1954. - ref(js): Rename constants/{globalSelectionHeader -> pageFilters} (#30618) by @evanpurkhiser
  1955. _Plus 1646 more_
  1956. 21.11.0
  1957. -------
  1958. ### Frontend Deploys (ongoing)
  1959. By: @billyvg (#28878)
  1960. ### Python: Add support for Apple arm64 development (ongoing)
  1961. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  1962. 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.
  1963. By: @armenzg (#29739, #29449, #29315, #28769, #28607)
  1964. ### Docker: Add support for Apple arm64 development (ongoing)
  1965. In order to do development for Sentry, we need to spin up various Docker containers.
  1966. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  1967. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  1968. By: @armenzg (#29494, #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724)
  1969. ### Connecting Dashboards and Discover (ongoing)
  1970. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  1971. By: @edwardgou-sentry (#28699, #28827, #28745, #28637)
  1972. ### Various fixes & improvements
  1973. - fix(tests) Remove import that wasn't caught in pr (#30018) by @markstory
  1974. - chore(tests) Remove old react-select test helpers (#29998) by @markstory
  1975. - ref(tests) Replace usage of predicate in MockApiClient (#29997) by @markstory
  1976. - feat(dashboards): Add dashboard widget resizing flag (#30000) by @narsaynorath
  1977. - feat(ci): Drop ubuntu from dev env CI (#29956) by @armenzg
  1978. - ref(native-stack-trace-v2): Add more adjusts (#30013) by @priscilawebdev
  1979. - fix(dev): Patch firefox_profile.py from Selenium package (#29887) by @armenzg
  1980. - feat(ui): Add metrics switch to performance page [INGEST-572] (#30011) by @matejminar
  1981. - ref(native-stack-trace-v2): Apply design feedback (#29989) by @priscilawebdev
  1982. - ref(js): Convert GlobalSelectionHeaderRow to a FC (#30004) by @evanpurkhiser
  1983. - meta(py): Upgrade python typing analysis script (#29961) by @mgaeta
  1984. - ref(ts): Make GlobalSelectionStore useLegacyStore compatible (#30002) by @evanpurkhiser
  1985. - security(issue-alerts): Validate the issue alert owner is a member of the organization (#29962) by @wedamija
  1986. - feat(ui): Storybook - Add theme switcher & noBorder option to <Sample /> (#29765) by @vuluongj20
  1987. - feat(notifications): Slack Digests (#29677) by @mgaeta
  1988. - feat(ui): Release Details Sidebar component update (#29842) by @mikellykels
  1989. - feat(release-comparison): Add Regressed tab to issue filter tabs (#27896) by @mikellykels
  1990. - adds hook and experiment (#29976) by @scefali
  1991. - feat(logo-upload): Update serializer to account for popularity (#29978) by @leeandher
  1992. - test(ui): Convert seenByList to RTL (#29983) by @scttcper
  1993. - test(ui): Convert collapsible component to RTL (#29982) by @scttcper
  1994. - feat(widget-library): Add Library Widgets to Dashboard (#29881) by @shruthilayaj
  1995. - feat(tests) Add request matchers to MockApiClient (#29910) by @markstory
  1996. - ref(tests) Move tests for MutedBox to RTL (#29967) by @markstory
  1997. _Plus 1127 more_
  1998. 21.10.0
  1999. -------
  2000. ### Frontend Deploys (ongoing)
  2001. PRs: #28878
  2002. ### Python: Add support for Apple arm64 development (ongoing)
  2003. Apple started moving away from their Intel based chipset to arm64 chipsets (aka as Apple Silicon).
  2004. 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.
  2005. PRs: #28769, #28607
  2006. ### Docker: Add support for Apple arm64 development (ongoing)
  2007. In order to do development for Sentry, we need to spin up various Docker containers.
  2008. Apple is moving away from Intel based chipset to arm64 chipsets (aka Apple Silicon).
  2009. This milestones track all work required to make sure we can still use these development services on Apple's arm64 architecture.
  2010. PRs: #29293, #29284, #29157, #29081, #29117, #29084, #28672, #28724
  2011. ### Connecting Dashboards and Discover (ongoing)
  2012. Open a Dashboard widget in Discover. Add a Discover Query to a Dashboard.
  2013. PRs: #28699, #28827, #28745, #28637
  2014. ### Various fixes & improvements
  2015. - feat(workflow): Enable issue-percent-filters flag by default (#29325)
  2016. - feat(post-process-forwarder) Allow different types of post process forwarders (#29225)
  2017. - ref(search): Enable search without waiting for search groups to load (#29336)
  2018. - adds experiment for trial label (#29305)
  2019. - fix(discover): Various snql discover fixes (#29219)
  2020. - chore(deletion) Drop aborted column (#29323)
  2021. - fix(snapshots): Fixes datetime comparison with str issue (#29349)
  2022. - fix(ui): Handle empty alert chart (#29348)
  2023. - feat(dev): Run dev env workflow when .pre-commit-config.yaml changes (#29331)
  2024. - ref(tests): Use screen for querying in RTL (#29312)
  2025. - fix(alerts): Fix logic that creates snapshots for crash rate alerts (#29320)
  2026. - ref(grouprelease): Buffer GroupRelease.last_seen update per minute (#29328)
  2027. - ref(minichart): Add extra empty space on the top - [INGEST-495] (#29321)
  2028. - ref(js): Remove unused withProjects on incidentRules/triggers (#29335)
  2029. - test(js): Always use our exported act (#29340)
  2030. - ref(js): Rewrite Sidebar as a functional component (#29278)
  2031. - test(js): Refactor useLegacyStore test to use testing-library/react-hooks (#29338)
  2032. - fix(workflow): Filter team release counts by teams projects (#29341)
  2033. - feat(team-insights): Add Number of Releases section (#29101)
  2034. - Temporarily disable pyright pre-commit checks. (#29326)
  2035. - build(deps): bump nth-check from 2.0.0 to 2.0.1 (#29000)
  2036. - fix(growth): Select the correct project when showing sample transaction banner (#29324)
  2037. - fix(visibility): Unbound errors for visibility files (#29330)
  2038. - fix(js): Links should not receive router attributes (#29279)
  2039. _Plus 590 more_
  2040. 21.9.0
  2041. ------
  2042. - No documented changes.
  2043. 21.8.0
  2044. ------
  2045. - No documented changes.
  2046. 21.7.0
  2047. ------
  2048. - No documented changes.
  2049. 21.6.3
  2050. ------
  2051. - No documented changes.
  2052. 21.6.2
  2053. ------
  2054. - No documented changes.
  2055. 21.7.1
  2056. ------
  2057. ### Breaking Change
  2058. If you are upgrading from a release prior to 10.0.0 you need to first upgrade to 21.6.1 and run migrations.
  2059. For more information [see the upgrade guide](https://develop.sentry.dev/self-hosted/#hard-stops).
  2060. 21.6.1
  2061. ------
  2062. - No documented changes.
  2063. 21.6.0
  2064. ------
  2065. ### Deprecation Warning
  2066. 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.
  2067. 21.5.1
  2068. ------
  2069. - No documented changes.
  2070. 21.5.0
  2071. ------
  2072. - No documented changes.
  2073. 21.4.1
  2074. ------
  2075. - No documented changes.
  2076. 21.4.0
  2077. ------
  2078. - No documented changes.
  2079. 21.3.1
  2080. ------
  2081. - No documented changes.
  2082. 21.3.0
  2083. ------
  2084. - No documented changes.
  2085. 21.2.0
  2086. ------
  2087. - No documented changes.
  2088. 21.1.0
  2089. ------
  2090. - No documented changes.
  2091. 20.12.1
  2092. -------
  2093. - No documented changes.
  2094. 20.11.1
  2095. -------
  2096. - No documented changes.
  2097. 20.11.0
  2098. -------
  2099. - No documented changes.
  2100. 20.10.1
  2101. -------
  2102. - No documented changes.
  2103. 20.10.0
  2104. -------
  2105. - No documented changes.
  2106. 20.9.0
  2107. ------
  2108. - No documented changes.
  2109. 20.8.0
  2110. ------
  2111. - No documented changes.
  2112. 20.7.1
  2113. ------
  2114. - No documented changes.
  2115. 20.7.0
  2116. ------
  2117. - No documented changes.
  2118. v20.6.0
  2119. -------
  2120. - Switched to CalVer
  2121. v10.0
  2122. -----
  2123. 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/
  2124. v9.1.2
  2125. ------
  2126. - Bug fixes from 9.1.1 release.
  2127. - See https://github.com/getsentry/sentry/releases/tag/9.1.2 for a summary
  2128. v9.1.1
  2129. ------
  2130. - Bug fixes from 9.1.0 release.
  2131. v9.1
  2132. ----
  2133. The changelog for Sentry 9.1 is summarized. For full details, we recommend reviewing the
  2134. full set of SCM changes on GitHub.
  2135. First, an important preface:
  2136. FUTURE VERSIONS OF SENTRY WILL INTRODUCE BACKWARDS INCOMPATIBLE INFRASTRUCTURE
  2137. 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:
  2138. - Postgres will be the only supported SQL database
  2139. - Our new search infrastructure (codenamed Snuba) will become required (we'll provide a migration path)
  2140. - Various new infrastructure services will be required (such as Kafka)
  2141. 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.
  2142. Integrations
  2143. ~~~~~~~~~~~~
  2144. 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.
  2145. This release includes integrations for:
  2146. - Azure DevOps
  2147. - BitBucket
  2148. - GitHub
  2149. - GitHub Enterprise
  2150. - GitLab
  2151. - Jira
  2152. - Jira Server
  2153. There is additionally a Slack integration, though it requires a now-deprecated workspace token in order to use.
  2154. 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).
  2155. Native Support
  2156. ~~~~~~~~~~~~~~
  2157. Various improvements for native (compiled) runtimes is included in this release.
  2158. - Improved rendering for native stacktraces.
  2159. - Improved support for Apple crash reports.
  2160. - Added unreal engine 4 crash dump support.
  2161. - Added code identifier support for debug files.
  2162. Security
  2163. ~~~~~~~~
  2164. - Added SAML2 SSO support.
  2165. - Member invitations will now automatically expire after 30 days.
  2166. - Fixed potential settings exposure if sentry was deployed in DEBUG mode.
  2167. Misc
  2168. ~~~~
  2169. - Settings have been greatly improved and updated to allow non-admins read-only access in many areas.
  2170. - Added additional localization configuration for User Feedback dialogs.
  2171. - Added account session history under Account Settings -> Security -> Session History.
  2172. - Event data stored in Redis & RabbitMQ no longer uses pickle to encode data. All data is now encoded in JSON.
  2173. - Various improvements to CSP and other browser Reporting API support.
  2174. - Many features disabled via feature flags now indicate how to enable them in the UI.
  2175. - Improved suspect commit generation for Java projects.
  2176. - Repository access is now coupled to integrations access (`org:integrations`)
  2177. - Various improvements to exception fingerprinting.
  2178. v9.0
  2179. ----
  2180. The changelog for Sentry 9 is summarized. For full details, we recommend reviewing the
  2181. full set of SCM changes on GitHub. There are far too many changes to list in Sentry 9,
  2182. but the major highlights are documented below.
  2183. There are also significant schema and data changes in this release, so plan for a huge amount
  2184. of updates and a measurable increase in utilization of your data stores.
  2185. Note: Major features which are undocumented here should be considered unstable, and are almost
  2186. certainly behind a feature switch which is intended to be disabled.
  2187. Dashboard
  2188. ~~~~~~~~~
  2189. We've removed the project-manager-esque dashboard and brought back a team/card based selection as
  2190. as a new sidebar for quick access. We will continue to iterate on what projects mean in Sentry
  2191. going forward and this is simply a first step towards future changes.
  2192. Settings
  2193. ~~~~~~~~
  2194. A new global settings UI has been introduced. This is an attempt to unify all settings and make
  2195. it easier to find the numerous configuration options throughout Sentry.
  2196. Environments
  2197. ~~~~~~~~~~~~
  2198. Environments have been moved up in the hierarchy and are now a first class citizen. While
  2199. still early, this is intended to replace the need for having separate projects per environment.
  2200. To use environments you simply need to ensure you're configuring the ``environment`` parameter
  2201. in the Sentry SDK, and it should automatically propagate into Sentry proper.
  2202. Owners
  2203. ~~~~~~
  2204. A new owners feature allows you to define per-project rules for declaring explicit ownership.
  2205. Much like GitHub's .gitowners, this helps Sentry understand who is responsible for a specific
  2206. issue, and more importantly lets you limit email alerts to only the relevant parties.
  2207. In addition to explicit owners, the release framework has expanded to support implicit owners
  2208. and suspect commits. This currently only works with GitHub.com hosted repositories, but will be
  2209. expanded to support other providers in future versions of Sentry.
  2210. Teams & Projects
  2211. ~~~~~~~~~~~~~~~~
  2212. Projects can now be associated with many teams, and teams can be referenced in comments and
  2213. assignment as well as the new ownership features.
  2214. Both Team and Project names have been deprecated, and the short name as been promoted as the
  2215. canonical reference. Teams can be mentioned using #team-name.
  2216. Integrations
  2217. ~~~~~~~~~~~~
  2218. The beginnings of the new integration framework (plugin v3) have landed, along with an initial
  2219. version of a new Slack integration.
  2220. The new integrations framework will likely change in upcoming versions of Sentry, and we dont
  2221. suggest building against it yet.
  2222. Some caveats:
  2223. - The Slack integration requires Slack workspace tokens.
  2224. - While there is some early work of other integrations in this release, they are not yet GA nor
  2225. are they exposed.
  2226. API
  2227. ~~~
  2228. Various portions of processing for the API will require additional dependencies and configuration
  2229. (such as symbolic).
  2230. - The 'secret key' for a DSN is no longer required and has been deprecated in SDKs.
  2231. - Added support for Minidumps generated by Breakpad and Crashpad.
  2232. - Added support for Cordova and Electron.
  2233. - A new standard 'security report' endpoint has been exposed, which supports HKPK, CSP,
  2234. Expect-CT, and Expect-Staple reports.
  2235. - Improved reprocessing feature.
  2236. - Improved support for native Debug Symbols (Apple, Linux).
  2237. - The ingestion API is now JSON-schema based (though still fairly flexible).
  2238. - Added setup wizard for various SDKs (e.g. react-native).
  2239. Privacy Changes
  2240. ~~~~~~~~~~~~~~~
  2241. As part of GDPR, the open source version of Sentry now changes the default policy for its beacon
  2242. (the service which tells sentry.io statistics about open source usage) to **not** send the system's
  2243. contact email address by default. You can still opt-in to this, which will allow us to contact you
  2244. in the event of a major security issue.
  2245. Misc
  2246. ~~~~
  2247. - User Feedback will now send an email notification.
  2248. - Almost all major UI components are now driven by the client-side application.
  2249. - Avatars have been added for organizations.
  2250. - Various improvements to issue hashing, specifically for native (iOS) and javascript
  2251. applications.
  2252. - Various improvements to Single Sign-On flows. You should update any external auth extensions
  2253. you're using as part of this (sentry-auth-github, sentry-auth-google).
  2254. - Support for SAML via sentry-auth-saml2.
  2255. - Support for Google Cloud Storage as a storage backend.
  2256. - A new Assistant to help onboard users.
  2257. - Add count estimates to search results.
  2258. - Superuser has been locked down significantlly with idle timeouts and secondary sessions.
  2259. - 2FA can now be enforced for an organization.
  2260. - Various performance around event processing to make up for all the added load we're forcing on
  2261. ya'll. =)
  2262. v8.22
  2263. -----
  2264. - BREAKING: Members will no longer be automatically granted membership to the
  2265. default organization. You should use SSO or the invite flows.
  2266. - Add support for SAML2 authentication through identity providers that
  2267. implement the ``SAML2AuthProvider``. See getsentry/sentry-auth-saml2.
  2268. - BREAKING: Group share urls have all been invalidated and must be regenerated.
  2269. - Added the ability for users to disable workflow notifications on a per-project basis.
  2270. Schema Changes
  2271. ~~~~~~~~~~~~~~
  2272. - Added ``ProjectSymCacheFile`` model.
  2273. - Added index on ``TagValue(project_id, key, last_seen)``
  2274. - Add ``GroupShare`` model.
  2275. API Changes
  2276. ~~~~~~~~~~~
  2277. - Added API endpoint to list members awaiting access
  2278. v8.21
  2279. -----
  2280. - Ignore querystrings when looking up release artifacts
  2281. - Add Visual Studio authentication provider for plugins.
  2282. - Add "team" parameter to the project details API.
  2283. - Added mailing list support (via ``List-Id`` header) to digest emails.
  2284. Schema Changes
  2285. ~~~~~~~~~~~~~~
  2286. - Added ``IdentityProvider`` model.
  2287. - Added ``Identity`` model.
  2288. - Added ``UserIdentity`` model.
  2289. - Added ``ProjectTeam`` model
  2290. v8.20
  2291. -----
  2292. - Make BitBucket repositories enabled by default
  2293. - Add raw data toggle for Additional Data
  2294. - Improved function name resolving for JavaScript sourcemaps
  2295. - Add initial support for Redis Cluster.
  2296. - Support a list of hosts in the ``redis.clusters`` configuration along side
  2297. the traditional dictionary style configuration.
  2298. - Better support for rendering rich JSON and URL encoded HTTP bodies by
  2299. guessing the content type based on format heuristics.
  2300. - Better support for sanitizing of string HTTP bodies.
  2301. Schema Changes
  2302. ~~~~~~~~~~~~~~
  2303. - Added index on ``ProjectPlatform(last_seen)`` column
  2304. - Added index on ``GroupCommitResolution.commit_id``
  2305. - Enable ``citext`` extension in Postgres.
  2306. - Dropped ``TagKey.project_id`` foreign key constraint
  2307. - Dropped ``TagValue.project_id`` foreign key constraint
  2308. - Dropped ``GroupTagKey.project_id`` foreign key constraint
  2309. - Dropped ``GroupTagKey.group_id`` foreign key constraint
  2310. - Dropped ``EventUser.project_id`` foreign key constraint
  2311. - Added ``Email`` model
  2312. - Change ``CommitFileChange.filename`` from varchar to text in PostgreSQL
  2313. v8.19
  2314. -----
  2315. - Hide project filter when there are no projects to list.
  2316. - Added lookup methods to constants to get a unique `integration_id` for a given
  2317. event, and to get information (documention url, human readable name) from that id.
  2318. Schema Changes
  2319. ~~~~~~~~~~~~~~
  2320. - Added ``Integration``, ``OrganizationIntegration``, and ``ProjectIntegration`` models
  2321. - Added ``Repository(integration_id)`` column
  2322. v8.18
  2323. -----
  2324. - Expanded resolution options to allow current and explicit versions.
  2325. - Added proguard support
  2326. - Removed support for global dsyms.
  2327. - Moved Queue admin page to React.
  2328. - Replaced usage of jQuery Flot library with internal graphs.
  2329. - Expanded ignore actions to include deltas and rates for both occurrences and
  2330. users impacted.
  2331. - Add a new option (`auth.allow-registration`) for determining whether registration
  2332. is allowed on an installation.
  2333. - Moved "create organization" into React.
  2334. - Expanded React Form components (Form, ApiForm).
  2335. - Moved "create team" into React.
  2336. - add Slack to supported auth backends in social auth (for plugins)
  2337. - Expanded resolution actions (on stream) to include current release and explicit
  2338. release.
  2339. Schema Changes
  2340. ~~~~~~~~~~~~~~
  2341. - Added Release.commit_count
  2342. - Added Release.last_commit_id
  2343. - Added Release.authors
  2344. - Added Release.total_deploys
  2345. - Added Release.last_deploy_id
  2346. - Added ``FeatureAdoption`` model
  2347. - Removed DSymBundle
  2348. - Removed DSymObject
  2349. - Removed DSymSDK
  2350. - Removed DSymSymbol
  2351. - Removed GlobalDSymFile
  2352. - Added GroupHash.state
  2353. - Drop index on ``ReleaseEnvironment(project_id)``
  2354. - Drop index on ``ReleaseCommit(project_id)``
  2355. - Drop unique constraint on ``ReleaseEnvironment(project_id, release_id, environment_id)``
  2356. - Added GroupResolution.type
  2357. - Added GroupResolution.actor_id
  2358. - Added Project.platform
  2359. - Added GroupSnooze.actor_id
  2360. - Added ScheduledJob
  2361. - Added GroupResolution.actor_id
  2362. - Added ``ScheduledJob`` model
  2363. - Added User.last_active
  2364. API Changes
  2365. ~~~~~~~~~~~
  2366. - Project keys endpoint will include all available keys by default. Use
  2367. ``status=active`` to retain the old behavior.
  2368. v8.17
  2369. -----
  2370. - Added @mentions to comments
  2371. - Initial (internal) analytics abstraction.
  2372. - Turned on reprocessing by default
  2373. - Added basics for Data Forwarding integrations.
  2374. - Changed the grouping and default `in_app` values for cocoa events.
  2375. - Removed global dsym support.
  2376. - Removed support for legacy apple report format.
  2377. - The threads interface now contributes to grouping if it contains a single thread.
  2378. - Added per-key (DSN) rate limits (``project:rate-limits`` feature).
  2379. - Added tsdb statistics for events per-key.
  2380. - Added ``sentry.deletions`` abstraction to improve bulk deletions.
  2381. - Added basic workspace for Visual Studio Code.
  2382. - Added hovercards for Issue IDs in activity entries.
  2383. - Added event count options to ignore.
  2384. - Added user frequency options to ignore.
  2385. Schema Changes
  2386. ~~~~~~~~~~~~~~
  2387. - Dropped ``GroupTagValue.group_id`` foreign key constraint
  2388. - Dropped ``GroupTagValue.project_id`` foreign key constraint
  2389. - Added ``Deploy.notified`` column
  2390. - Added index on ``EventTag.date_added``
  2391. - Added unique index on ``Environment(organization_id, name)``
  2392. - Added unique index on ``ReleaseEnvironment(organization_id, release_id, environment_id)``
  2393. - Added ``EventUser.name`` column
  2394. - Added ``UserReport.event_user_id`` column
  2395. v8.16.1
  2396. -------
  2397. - Fixed issue in migration 0302 that prevented upgrading
  2398. v8.16
  2399. -----
  2400. - Added data migration to create UserEmail objects for users whose primary emails did not have them
  2401. - Time series data (used by graphs and other features) is now updated when groups are merged.
  2402. - Added distributions to the release system to better support mobile apps
  2403. - Update activity entries to reference issues by their short ID.
  2404. - Added user notifications settings for deploy emails.
  2405. Schema Changes
  2406. ~~~~~~~~~~~~~~
  2407. - Added ``Distribution`` model
  2408. - Added ``ReleaseFile.dist`` column
  2409. - Added ``UserOption.organization`` column
  2410. - Added ``CommitAuthor.external_id`` column
  2411. API Changes
  2412. ~~~~~~~~~~~
  2413. - Deprecate `dateStarted` in releases endpoints
  2414. v8.15
  2415. -----
  2416. - Added overview for a release to view a breakdown of files changes, commit authors, new issues, and issues resolved
  2417. - Refactor usage of ``sentry.app`` to use individual modules.
  2418. - Implemented ``--concurrency`` on ``sentry cleanup``
  2419. - Added support for the new symbol server system to support native SDKs better.
  2420. - Added deploy email
  2421. - Added OAuth2 support to the web API.
  2422. - Simplified management of secondary email addresses.
  2423. - Fixed an issue where changing primary email address would remove the pre-existing verified email.
  2424. - Disallow duplicating primary emails for users moving forward.
  2425. - Resolve issues when commits with ``Fixes SHORTID`` are included in releases
  2426. - Added support for associating debug symbols with iTunes applications and builds.
  2427. - Added the ability to claim unassigned issues when resolving them.
  2428. API Changes
  2429. ~~~~~~~~~~~
  2430. - Added CommitFileChangeEndpoint
  2431. - Added IssuesResolvedInReleaseEndpoint
  2432. - Added ReleaseDeploysEndpoint
  2433. - Added OrganizationReleaseCommitsEndpoint
  2434. - Added EventFileCommittersEndpoint
  2435. - Added ReleaseDeploysEndpoint
  2436. Schema Changes
  2437. ~~~~~~~~~~~~~~
  2438. - Added ``Deploy`` model
  2439. - Added ``ApiApplication`` model
  2440. - Added ``ApiAuthorization`` model
  2441. - Added ``ApiGrant`` model
  2442. - Removed ``ApiToken.key`` column
  2443. - Added ``ApiToken.application`` column
  2444. - Added ``ApiToken.refresh_token`` column
  2445. - Added ``ApiToken.expires_at`` column
  2446. - Added ``ApiToken.scope_list`` column
  2447. - Added ``ApiKey.scope_list`` column
  2448. - Added ``ReleaseHeadCommit`` model
  2449. Security
  2450. ~~~~~~~~
  2451. - Added encryption to the following fields:
  2452. - AuthIdentity.data
  2453. - AuthProvider.config
  2454. - Option.value
  2455. - OrganizationOption.value
  2456. - ProjectOption.value
  2457. - UserOption.value
  2458. v8.14.1
  2459. -------
  2460. - Fixed issues related to migrations failing to finish for 8.14
  2461. - Fixed an issue where Release version names were erronously too restrictve.
  2462. - Fixed an issue where "New Issues" counts would have all been 0 for releases created in 8.14.
  2463. v8.14
  2464. -----
  2465. - Added new internal processing interface that supports multiple processing steps per stacktrace (for instance JavaScript + native)
  2466. - Add IE10 legacy browser filter
  2467. - Added data migration to merge legacy releases
  2468. - Added support for symbolizing inlined frames and added heuristics for fixing up native stacktraces.
  2469. - Removed instruction_offset as a frame attribute from stacktraces
  2470. - [BREAKING] Quotas must now instantiate RateLimited and NotRateLimited return values.
  2471. - [BREAKING] Redis quota implementations now return BasicRedisQuota instead of tuples.
  2472. - Commits using the ``Fixes SHORTID`` annotation will now be tracked appropriately.
  2473. - Release functionality is now detected at a project level to enable various features.
  2474. - Added basic encryption facilities (``sentry.utils.encryption``).
  2475. - Added support for "Fixes XXX, YYY" and "Fixes XXX YYY" notations.
  2476. - Added bulk "Resolve in Next Release" to stream actions.
  2477. - Various visual improvements to notifications, including the addition of
  2478. transactions.
  2479. - Plugins can now add tasks that run in sentry as celery workers.
  2480. - Added the ability to verify TLS connections when fetching artifacts.
  2481. - Added data migration to merge environments across an organization
  2482. - Added ``timesSeen`` keyword to issue search.
  2483. - Added feature signals, such as first time release tracking is enabled.
  2484. API Changes
  2485. ~~~~~~~~~~~
  2486. - Added OrganizationReleasesEndpoint.
  2487. - Added context type ``app`` for cocoa events.
  2488. - Added ``assignedTo`` param to ``/projects/{org}/{project}/issues/``.
  2489. - Split out filtered stats onto Inbound Data Filters page
  2490. - Added OrganizationReleasesEndpoint
  2491. - Added OrganizationReleaseFileEndpoint
  2492. Schema Changes
  2493. ~~~~~~~~~~~~~~
  2494. - Added unique index on ``Release(organization_id, version)``
  2495. - Removed unique index on ``Release(project_id, version)``
  2496. - Added ``GroupCommitResolution`` model.
  2497. - Added ``Environment.organization_id`` column.
  2498. - Added ``EnvironmentProject`` model.
  2499. - Added ``Project.flags`` column.
  2500. - Added not null constraint to ``Environment.organization_id`` column.
  2501. - Removed not null constraint on ``Environment.project_id`` and ``ReleaseEnvironment.project_id`` columns
  2502. v8.13
  2503. -----
  2504. - Added individual filters for legacy browsers to improve customization of error filtering based on browser versions
  2505. - Support for setting a custom security header for javascript fetching.
  2506. - start using ReleaseProject and Release.organization instead of Release.project
  2507. - Project quotas are no longer available, and must now be configured via the organizational rate limits.
  2508. - Quotas implementation now requires a tuple of maximum rate and interval window.
  2509. - Added security emails for adding and removing MFA and password changes.
  2510. - Added the ability to download an apple compatible crash report for cocoa events.
  2511. - Add memory and storage information for apple devices
  2512. - The legacy API keys feature is now disabled by default.
  2513. - Show Images Loaded section for cocoa events with version number.
  2514. - Added registers to stacktrace for cocoa exceptions.
  2515. - Fixed bug where workflow notification subject may not include a custom email prefix.
  2516. - Added configurable subject templates for individual alert emails (`mail:subject_template` option).
  2517. - Added data migration to populate ReleaseProject.new_groups
  2518. - Moved organization settings to React.
  2519. - Added support for managing newsletter subscriptions with Sentry.io
  2520. Schema Changes
  2521. ~~~~~~~~~~~~~~
  2522. - Added ``ReleaseProject.new_groups`` column.
  2523. - Moved organization settings to React.
  2524. Schema Changes
  2525. ~~~~~~~~~~~~~~
  2526. - Added ``ReleaseProject.new_groups`` column.
  2527. - Added ``OrganizationAvatar`` model.
  2528. API Changes
  2529. ~~~~~~~~~~~
  2530. - Added avatar and avatarType to ``/organizations/{org}/`` endpoint.
  2531. - Provide commit and author information associated with a given release
  2532. - Provide repository information for commits
  2533. - Added new internal processing interface that supports multiple processing steps per stacktrace (for instance JavaScript + native)
  2534. v8.12
  2535. -----
  2536. - Fix bug where some users would incorrectly not receive workflow notifications for projects they were subscribed to.
  2537. - restructured dSYM processing. It now records errors in the symbolication process
  2538. more accurately and will report system errors them to the internal logger.
  2539. - Added data migration to backfill legacy release data
  2540. - Added data migration to backfill legacy commit data
  2541. - Added data migration to backfill legacy release file and environment data
  2542. - Allow gziped/deflated JavaScript artifacts to be uploaded through the API.
  2543. - Shared issue view no longer shows SDK.
  2544. - Added ``activeSince`` to search (uses ``active_at``).
  2545. - Added ``firstSeen`` to search (uses ``first_seen``).
  2546. - Added ``lastSeen`` to search (uses ``last_seen``).
  2547. - Added ``firstRelease`` to search (uses ``first_release``).
  2548. - Fixed usage (and propagation) of ``Group.first_release``.
  2549. - The + and - datetime search helpers now work with ranges (e.g. ``<=``).
  2550. - Added the ability to download artifacts from releases.
  2551. SDKs
  2552. ~~~~
  2553. - The `repos` interface has been added.
  2554. Schema Changes
  2555. ~~~~~~~~~~~~~~
  2556. - Added ``Release.organization`` column.
  2557. - Added ``ReleaseProject`` model.
  2558. - Added ``ReleaseCommit.organization_id`` column.
  2559. - Added ``ReleaseFile.organization`` column.
  2560. - Added ``ReleaseEnvironment.organization_id`` column.
  2561. v8.11
  2562. -----
  2563. - Ignore a ``null`` ``Origin`` header for authentication.
  2564. - Added the ability to search for issues that you are subscribed to from the stream view.
  2565. - Added the ability to search issues by their last seen timestamp.
  2566. - Improved UI for password and API key fields used in integrations
  2567. - Fixed bug where API responses would include incorrect `isSubscribed` values for issues.
  2568. - Added support for switching to unsymbolicated tracebacks in cocoa.
  2569. - Invalidate user sessions when changing password and 2fa settings.
  2570. - Add configurable password validators to enforce password strength.
  2571. - Send email to specific email when adding a new email rather than sending to all unverified email addresses.
  2572. - Allow user to resend email verification to primary email address.
  2573. - Added additional detail to subscription help text when viewing a group.
  2574. - Add Asana to supported auth backends in social auth (for plugins)
  2575. - Cleaner install UI when creating a new project.
  2576. - Added support for recording symbols separately in frames independent of the function.
  2577. - Reduce noisy Postgres logs from inserting duplicate onboarding rows.
  2578. - Added device icons for Apple Watch and Apple TV
  2579. - Added export action to group tag details.
  2580. - Improved display of user tags.
  2581. - Added 'transaction' tag which automatically populates from explicit culprits.
  2582. - Added beginnings of repository management to UI (behind `organizations:repos` feature).
  2583. Schema Changes
  2584. ~~~~~~~~~~~~~~
  2585. - Added ``User.session_nonce`` column.
  2586. - Added ``CommitFileChange`` model.
  2587. - Added ``Repository.url`` column.
  2588. - Added ``Repository.provider`` column.
  2589. - Added ``Repository.config`` column.
  2590. - Added ``Repository.external_id`` column.
  2591. - Added ``Repository.status`` column.
  2592. API Changes
  2593. ~~~~~~~~~~~
  2594. - Added ``/organizations/{org}/config/repos/`` endpoint.
  2595. - Added ``/organizations/{org}/repos/{repo}/`` endpoint.
  2596. v8.10
  2597. -----
  2598. - New and improved UI.
  2599. - Removed previously deprecated ``sentry celery`` command.
  2600. - Replaced the ``events`` queue with ``events.{preprocess,process,save}_event``.
  2601. - Added Danger (danger/danger) for monitoring various PR requirements.
  2602. - Enabled organization weekly report emails for all organizations.
  2603. - Add S3 filestore backend.
  2604. - ``SENTRY_FILESTORE`` deprecated and replaced with ``filestore.backend``
  2605. - ``SENTRY_FILESTORE_OPTIONS`` deprecated and replaced with ``filestore.options``
  2606. - Add watchOS support for cocoa interface.
  2607. - Fix support for internationalized Origins and raven-js.
  2608. - SSO is now enforced to access data within any org that has it set as a requirement.
  2609. - Improved rendering of weekly report email on mobile devices.
  2610. API Changes
  2611. ~~~~~~~~~~~
  2612. - Add ``/organizations/{org}/repos/`` endpoint.
  2613. - Add ``/organizations/{org}/repos/{repo}/commits/`` endpoint.
  2614. - Add ``/projects/{org}/{project}/releases/{version}/commits/`` endpoint.
  2615. - SSO restrictions are now applied across session-based API authentication.
  2616. Schema Changes
  2617. ~~~~~~~~~~~~~~
  2618. - Added ``Repository`` model.
  2619. - Added ``Commit`` model.
  2620. - Added ``CommitAuthor`` model.
  2621. - Added ``ReleaseCommit`` model.
  2622. - Added index on ``GroupTagValue(project, key, value, last_seen)``.
  2623. - Dropped index on ``GroupTagValue(project, key, value)``.
  2624. v8.9
  2625. ----
  2626. - Added support for Elixir.
  2627. - Improve performance for bulk deletions of Events and Groups.
  2628. - Fix rate limit logic for single organization mode.
  2629. - Added ``--no-repair`` flag for ``sentry upgrade`` for large installs.
  2630. - Fixed bug with merging counters yielding the wrong values.
  2631. - Require password confirmation when enabling/disabling 2fa.
  2632. - Collapse repeated frames in the stacktrace UI.
  2633. - Added weekly report emails behind feature flag.
  2634. - Rebrand Rules as Alerts / Alert Rules.
  2635. - Add frequency to Alerts.
  2636. Schema Changes
  2637. ~~~~~~~~~~~~~~
  2638. - Added unique index on ``Authenticator(user_id, type)``
  2639. v8.8
  2640. ----
  2641. - Added unique user frequency rule condition.
  2642. - Fixed a major performance regression from 8.7 on the ``GroupTagValue`` model.
  2643. - Various security fixes related to CSRF and XSS.
  2644. - Server side filtering of event ingest.
  2645. Schema Changes
  2646. ~~~~~~~~~~~~~~
  2647. - Removed ``HelpPage`` model.
  2648. - Added ``OrganizationMember.token`` column.
  2649. - Removed ``OrganizationMember.counter`` column.
  2650. v8.7
  2651. ----
  2652. - Removed "Replay Request" feature.
  2653. - Upgraded underlying redis library to resolve some networking issues.
  2654. - Added support for minified React exceptions.
  2655. Schema Changes
  2656. ~~~~~~~~~~~~~~
  2657. - Remove index ``GroupTagValue(project_id)``.
  2658. - Added ``Rule.status`` column.
  2659. - Added ``GroupRelease`` model.
  2660. - Added ``Environment`` model.
  2661. - Added ``ReleaseEnvironment`` model.
  2662. v8.6
  2663. ----
  2664. - The ``message`` attribute on Event/Group is now purely used for search storage.
  2665. - The ``sentry.interfaces.Message`` interface now contains a ``formatted`` attribute.
  2666. - ``SENTRY_MANAGED_USER_FIELDS`` now defaults to an empty list.
  2667. - Issues now render based on the type of data present, which are represented by
  2668. the type and metadata attributes in API responses.
  2669. - Stacktrace rendering has been greatly simplified and unified across languages.
  2670. - Client's may now pass the 'contexts' attribute, which will eventually supercede 'extra'.
  2671. - Various named contexts are now automatically generated and summarized for Cocoa and JavaScript
  2672. issues.
  2673. - Added JSON formatting for logs with ``system.logging-format``.
  2674. - Added a ``loglevel`` command line flag to most commands.
  2675. - Added two factor authentication support.
  2676. - Added support for setting IP address of an event automatically on event submission for all platforms.
  2677. - Added unsubscribe links to mails.
  2678. - Added email verification.
  2679. - Added ability to link/unlink Issues, support is dependent on plugins.
  2680. - Can now toggle between minified/original code in stacktraces where sourcemaps were applied.
  2681. - Can now upload release artifacts with tilde prefix (~) to omit protocol + host in URL lookups.
  2682. Schema Changes
  2683. ~~~~~~~~~~~~~~
  2684. - Added ``User.is_password_expired`` column.
  2685. - Added ``User.last_password_change`` column.
  2686. - Added ``UserEmail`` model.
  2687. - Added unique index on ``GroupTagValue(group_id, key, value)``
  2688. - Remove unique index on ``GroupTagValue(project_id, group_id, key, value)``
  2689. - Added index on ``GroupTagValue(project_id, key, value)``
  2690. - Added ``GroupSubscription`` model.
  2691. v8.5.1
  2692. ------
  2693. - Fixed issue with new Unsubscribe links in emails not working.
  2694. - Fixed bug with raven-js compatibility with IE8.
  2695. - Fixed bug handling IPv6 addresses.
  2696. v8.5
  2697. ----
  2698. - Added option to upload a profile image as an alternative to Gravatar.
  2699. - Deprecated ``sentry celery`` subcommand in favor of ``sentry run {worker|cron}``.
  2700. - Breadcrumb interface now rendered in event UI.
  2701. - Project notification settings page now indicates if current user is subscribed to active project.
  2702. - User is now automatically redirected to login page if their session expires inside React client application.
  2703. - Added new auth tokens to deprecate the usage of the older API keys.
  2704. Schema Changes
  2705. ~~~~~~~~~~~~~~
  2706. - Added ``ProjectPlatform`` model.
  2707. - Added index on``EventTag`` index.
  2708. - Added unique index on ``UserReport`` model.
  2709. - Added ``UserAvatar`` model.
  2710. - Added ``EventTag.group_id`` column.
  2711. - Added ``ApiToken`` model.
  2712. - Added ``Authenticator`` model.
  2713. v8.4.1
  2714. ------
  2715. - Fixed issue in running 8.4 migrations on MySQL only.
  2716. - Fixed issue that caused an infinite loop in ``patch_context.py`` under a race condition.
  2717. - Silently ignore breadcrumb data coming from clients instead of showing an error in the UI.
  2718. v8.4
  2719. ----
  2720. - Fixed bug that caused some email subjects to be generated without respecting the project subject prefix option.
  2721. - Organization's can now opt-in to early adopter features (via organization settings).
  2722. - User Feedback is now enabled by default.
  2723. - Deprecated ``sentry start`` in favor of new ``sentry run``.
  2724. - Access is no longer restricted by default to the domain matching ``system.url-prefix``. You must opt into this by setting ``ALLOWED_HOSTS`` explicitly.
  2725. - Replaced Gravatar mystery man with letter avatars
  2726. - Added 'Events Per Hour' graph to organization dashboard
  2727. - Moved organization activity stream to main column from sidebar
  2728. Schema Changes
  2729. ~~~~~~~~~~~~~~
  2730. - Added ``DSymSymbol`` model.
  2731. - Added ``DSymSDK`` model.
  2732. - Added ``DSymObject`` model.
  2733. - Added ``DSymBundle`` model.
  2734. v8.3.3
  2735. ------
  2736. - [SECURITY] Fixed a bug which allows API keys more permission than granted within the organization.
  2737. v8.3.2
  2738. ------
  2739. - Fixed bug affecting only MySQL users, see `GH-3030 <https://github.com/getsentry/sentry/issues/3030>`_.
  2740. v8.3.1
  2741. ------
  2742. - Fixed bug that, ironically, prevented saving a saved search.
  2743. - Fixed bug when merging groups and the counts are merged incorrectly.
  2744. - Fixed bug that caused the Installation Wizard to never go away if using a non-smtp email.backend setting.
  2745. - Fixed an ImproperlyConfigured issue from a cascading error.
  2746. v8.3.0
  2747. ------
  2748. - Added initial support for per-project callsigns and short IDs. This feature is not exposed to users yet.
  2749. - Improved static file delivery performance.
  2750. - Added CLI tool to monitor queue sizes. ``sentry queues --help``
  2751. - Moved email configuration into ``config.yml``.
  2752. - Added mailing list support (via ``List-Id`` header) for outbound email.
  2753. - URLs for issues that have been merged now redirect to the issue that absorbed the requested issue.
  2754. - Projects can now be bookmarked in the UI.
  2755. - Dashboard is now the default view for an organization.
  2756. Schema Changes
  2757. ~~~~~~~~~~~~~~
  2758. - Added ``ProjectDSymFile`` model.
  2759. - Added ``Counter`` model.
  2760. - Added ``GlobalDSymFile`` model.
  2761. - Added ``Group.short_id`` column.
  2762. - Added ``sentry_increment_project_counter`` function for PostgreSQL.
  2763. - Added ``Project.forced_color`` column.
  2764. - Added ``GroupRedirect`` model.
  2765. v8.2.5
  2766. ------
  2767. - [SECURITY] Fixed a bug which allows API keys more permission than granted within the organization.
  2768. v8.2.4
  2769. ------
  2770. - [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.
  2771. v8.2.3
  2772. ------
  2773. - Fix compatibility with Redis 2.8.9.
  2774. v8.2.2
  2775. ------
  2776. - [SECURITY] Fixed an issue where a superuser had the ability to inject data into audit logs through the admin UI.
  2777. v8.2.1
  2778. ------
  2779. - Fix compatibility with setuptools 20.2
  2780. v8.2.0
  2781. ------
  2782. - SENTRY_DISALLOWED_IPS is no longer configured by default. If you're exposing Sentry outside of your company you may wish to configure this.
  2783. - Do not require the documentation sync on repair to succeed.
  2784. - Added basic organization on-boarding.
  2785. - Project keys are no longer usable within the web API.
  2786. - Allow requiring data scrubbing security options as an organization wide setting.
  2787. - Added basic support for dsym symbol handling. This feature might leave behind temporary files when used in this version.
  2788. - 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.
  2789. Schema Changes
  2790. ~~~~~~~~~~~~~~
  2791. - Added ``ProjectBookmark`` model.
  2792. - Added ``EventTag`` model.
  2793. - Added ``OrganizationOnboardingTask`` model.
  2794. v8.1.5
  2795. ------
  2796. - [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.
  2797. v8.1.4
  2798. ------
  2799. - [SECURITY] Fixed an issue where a superuser had the ability to inject data into audit logs through the admin UI.
  2800. v8.1.3
  2801. ------
  2802. - Fix compatibility with setuptools 20.2
  2803. v8.1.2
  2804. ------
  2805. - [CRITICAL] Fix issue running ``sentry start`` with supervisord.
  2806. - Fix compatibility with older versions of djangorestframework.
  2807. - Updated member invitation emails.
  2808. v8.1.1
  2809. ------
  2810. - Fix broken static files compiled from 8.1.0. :(
  2811. v8.1.0
  2812. ------
  2813. - Default web server is now uWSGI (https://uwsgi-docs.readthedocs.io/en/latest/) to replace gunicorn.
  2814. - New "Saved Searches". See: http://blog.getsentry.com/2016/01/19/introducing-saved-searches.html
  2815. Schema Changes
  2816. ~~~~~~~~~~~~~~
  2817. - Remove FK constraints from ``Event.group_id``, ``Event.project_id``, ``EventMapping.group_id``, and ``EventMapping.project_id``.
  2818. - Added ``SavedSearch.is_default`` column.
  2819. - Added new ``SavedSearchUserDefault`` model.
  2820. v8.0.6
  2821. ------
  2822. - Fixed assignee dropdown not being clickable from touch devices.
  2823. - Don't ignore ``SENTRY_WEB_OPTIONS['workers']`` value if set.
  2824. - Fix Global Throughput dashboard in admin.
  2825. - Fix display for Release names when they include special characters.
  2826. - Added new ``sentry config generate-secret-key`` to help with regenerating a new SECRET_KEY value if needed.
  2827. v8.0.5
  2828. ------
  2829. - [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. :(
  2830. - Fixed a bug where Issue assignment emails weren't being delivered.
  2831. v8.0.4
  2832. ------
  2833. - Fixed an issue where notification digests weren't sending on some systems.
  2834. v8.0.3
  2835. ------
  2836. - [CRITICAL] Fixed an issue where performing a bulk merge would merge more than intended.
  2837. - Fixed saving the "Use Default Scrubbers" project setting
  2838. - Fix syncing documentation when behind an http proxy
  2839. v8.0.2
  2840. ------
  2841. - Fix ``IntegrityError`` after merging groups.
  2842. - Be less noisy about ``Cannot digest timeline, timeline is not in the ready state.``
  2843. - Fix incorrect ``Install`` links.
  2844. - Fixed being able to select a Chinese locale.
  2845. - Multiple bulk deletion improvements and bug fixes.
  2846. - Clarify ``Forcing documentation sync`` error messaging.
  2847. v8.0.1
  2848. ------
  2849. - Ignore ``blob:`` urls in hashing algorithms.
  2850. - Bump ``extra`` data size to 16k (previously 4k)
  2851. - Fixed some odd behavior where superusers appeared as members of a team when they weren't.
  2852. - By default, new superusers created through ``sentry createuser`` will be added as a member to a team, if there is only one team available.
  2853. v8.0.0
  2854. ------
  2855. Version 8 of Sentry introduces a brand new frontend. Most of the application has been overhauled
  2856. and rewritten on top of React and our web API. Additionally many new features have been exposed
  2857. related to workflows (user assignment, snooze, resolution) and release tracking. This changelog
  2858. does not attempt to capture the six+ months of incremental features and improvements in this
  2859. release of Sentry.
  2860. A Note on MySQL
  2861. ~~~~~~~~~~~~~~~
  2862. Due to numerous issues over the years and recent discoveries that nearly all schema migration was
  2863. broken in MySQL (due to some behavior in our migration tool), we've made the decision to no longer
  2864. support MySQL. It is possible to bring the schema up to date on a MySQL machine, but Sentry's
  2865. automated migrations will likely not work and require DBA assistance.
  2866. Postgres is now the only supported production database.
  2867. A Note on Workers
  2868. ~~~~~~~~~~~~~~~~~
  2869. In the past it was supported to run Sentry's queue workers with the `-B` option to also spawn
  2870. a celery beat process within the worker. This is no longer supported as it causes problems in
  2871. some queue setups (in particular if redis is being used). Instead you should now spawn two
  2872. independent processes. This is outlined in the installation documentation.
  2873. Changes to Quotas
  2874. ~~~~~~~~~~~~~~~~~
  2875. Team and System based quotas are now longer available. A new organization-relative project quota replaces them
  2876. and can be configured via Rate Limits on the organization dashboard.
  2877. Notification Digests
  2878. ~~~~~~~~~~~~~~~~~~~~
  2879. Email notifications will now automatically rollup if the rate of notifications exceeds a threshold. These can be
  2880. configured on a per project basis in Project Settings.
  2881. Configuration
  2882. ~~~~~~~~~~~~~
  2883. An Install Wizard has been added to aid in configuring necessary first-run options. Notably your Admin Email,
  2884. and URL Prefix. The Installation Wizard will also help any future updates and aid when new options are introduced.
  2885. A new configuration backend is now utilized for several options. These options can now be
  2886. configured via the web UI.
  2887. - A new configuration file, `config.yml` has been introduced. This new file is generated during `sentry init`
  2888. 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.
  2889. - ``SENTRY_URL_PREFIX`` has been deprecated, and moved to `system.url-prefix` inside of `config.yml` or it
  2890. can be configured at runtime.
  2891. - ``INTERNAL_IPS``, if configured, will now restrict superuser access to only users with both ``is_superuser``
  2892. and a matching IP.
  2893. CLI
  2894. ~~~
  2895. The `sentry` CLI tooling has been rewritten to be faster and less confusing.
  2896. Static files
  2897. ~~~~~~~~~~~~
  2898. 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.
  2899. General
  2900. ~~~~~~~
  2901. - Source builds now require Node 0.12.x or newer.
  2902. - The ``public`` setting on projects has been removed
  2903. - This also removes ``SENTRY_ALLOW_PUBLIC_PROJECTS``
  2904. - Clients which were only sending ``sentry_key`` and not using CORS will no
  2905. longer be able to authenticate.
  2906. - All incoming events now log through ``sentry.api``, which will additionally
  2907. capture far more events with improved console formatting.
  2908. - The 'sentry' user can no longer be removed.
  2909. - The Cassandra nodestore backend was broken, and this has been resolved.
  2910. - The ``has_perm`` plugin hook is no longer used.
  2911. - Do not unconditionally map sys.stdout to sys.stderr
  2912. - The HTTP interface's internal structure has greatly changed. Headers and Cookies are now lists. Body
  2913. is now stored as a string.
  2914. - The internal metrics backend now supports both Datadog and a simple logging implementation (useful in DEBUG).
  2915. - Member roles can now view client keys (DSNs).
  2916. - Documentation for configuration wizards is now pulled from docs.getsentry.com as part
  2917. of the ``upgrade`` and ``repair`` processes.
  2918. - The SSO flow for existing users has been greatly improved to avoid duplicate accounts.
  2919. - Deletions are delayed for one hour and can be cancelled by changing the status
  2920. back to ``VISIBLE``.
  2921. - Membership permissions have been overhauled and have been flattened into a single tiered
  2922. role. Additionally owners will no longer be automatically added to new teams.
  2923. - ``NotificationPlugin`` now requires ``is_configured`` to be declared.
  2924. - ``sentry.search`` should no longer be extended (``index`` and ``upgrade`` have been removed)
  2925. Client API
  2926. ~~~~~~~~~~
  2927. - The ``culprit`` attribute will now automatically be filled when not present.
  2928. - The ``in_app`` attribute on frames will now be computed on event submission when not present.
  2929. - The ``ip_address`` value will always be stored on the user interface when possible.
  2930. - The user interface no longer accepts data missing one of the required identifiers.
  2931. - The ``fingerprint`` value is now stored in ``Event.data``.
  2932. - The ``environment`` attribute is now soft-accepted and tagged.
  2933. Schema Changes
  2934. ~~~~~~~~~~~~~~
  2935. - Removed the ``Project.platform`` column.
  2936. - Removed the ``Project.organization`` column.
  2937. - Removed the ``AccessGroup`` table.
  2938. - Added ``EventUser`` table.
  2939. - Added ``user.{attribute}`` to search backends.
  2940. - Added ``Project.first_event`` column.
  2941. - Added ``Release.owner`` column.
  2942. - Added ``Organization.default_role`` column.
  2943. - Added ``OrganizationMember.role`` column.
  2944. - Added ``Broadcast.upstream_id`` column.
  2945. - Removed ``Broadcast.badge`` column.
  2946. - Added ``Broadcast.title`` column.
  2947. - Migrated blob data in ``File`` to ``FileBlob``.
  2948. - Removed ``File.storage`` column.
  2949. - Removed ``File.storage_options`` columns.
  2950. - Added ``OrganizationOption`` table.
  2951. - Added ``GroupSnooze`` table.
  2952. - Added ``GroupResolution`` table.
  2953. - Added ``GroupBookmark.date_added`` column.
  2954. - Removed ``User.last_name`` column.
  2955. - (App-only) Renamed ``User.first_name`` to ``User.name``.
  2956. - Removed ``Activity.event`` column.
  2957. - Removed ``Event.num_comments`` column.
  2958. v7.7.1
  2959. ------
  2960. - Pin Kombu dependency due to incompatibility.
  2961. v7.7.0
  2962. ------
  2963. - The behavior of ``create_or_update`` has changed. If you're using it please see the updated function.
  2964. - Added ``Group.first_release`` column.
  2965. - Added ``SavedSearch`` model for future features.
  2966. - Added ``Release.new_groups`` column.
  2967. - The explore feature is now deprecated and links have been hidden.
  2968. - Expanded various API endpoints for future usage.
  2969. - Initial prototype of embeddable crash reports. This adds the ``UserReport`` model.
  2970. - Added basic UI reporting for status checks.
  2971. - Added celery/beat alive check.
  2972. - Added celery app version check.
  2973. - Added queue overview to internal administration.
  2974. - Upped TSDB's storage of 10s to 60m of data.
  2975. - Added protocol version 7 to client spec.
  2976. - Adds ``fingerprint`` attribute.
  2977. - The behavior of ``SENTRY_ENABLE_EXPLORE_USERS`` is now default and the setting has been removed.
  2978. v7.6.2
  2979. ------
  2980. - Improved (fixed?) static bundling in various conditions.
  2981. v7.6.1
  2982. ------
  2983. - [Security] An XSS vulnerability was addressed with low cardinality tags and the stream filter box:
  2984. https://github.com/getsentry/sentry/commit/364b959811561de83f29893e105cc590224edbee
  2985. v7.6.0
  2986. ------
  2987. 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.
  2988. - The project-wide Alert system has been removed (to be re-implemented in the future).
  2989. - Access groups have been permanently removed.
  2990. - Added 'access_token' to data blacklist.
  2991. - The legacy (unused) search tables have been removed.
  2992. - Upgrades must now be applied manually via ``sentry upgrade`` or with ``sentry start --upgrade``.
  2993. (Don't forget to use ``--noinput`` if you're doing this via automated tooling!)
  2994. - ``Event.checksum`` and ``Group.checksum`` have been removed.
  2995. - The ``cleanup`` task has been removed (the command is still available).
  2996. - Various optimizations to ``cleanup`` for Postgres users.
  2997. - Within single organization mode users will automatically be added to the default organization.
  2998. - Added ``Organization.merge_to()`` helper to assist with merging organizations.
  2999. (i.e. in an on-premise install which wants to convert to a single organization)
  3000. - New ``import`` and ``export`` commands now exist for creating backups of critical metadata
  3001. (i.e. api keys, projects, user settings)
  3002. v7.5.6
  3003. ------
  3004. - Improved (fixed?) static bundling in various conditions.
  3005. v7.5.5
  3006. ------
  3007. - [Security] An XSS vulnerability was addressed with low cardinality tags and the stream filter box:
  3008. https://github.com/getsentry/sentry/commit/364b959811561de83f29893e105cc590224edbee
  3009. v7.5.4
  3010. ------
  3011. - Yet another case where valid team membership was being excluded.
  3012. v7.5.3
  3013. ------
  3014. - Fix another case where valid team membership was being excluded
  3015. v7.5.2
  3016. ------
  3017. - Correctly support SENTRY_PROJECT.
  3018. v7.5.1
  3019. ------
  3020. - Fix case where certain pages were not correctly including valid team membership
  3021. - Fix default user creation (regain automated signal)
  3022. - Fix sampling of internal metrics
  3023. v7.5.0
  3024. ------
  3025. This release removes the ability to login or create accounts using a social auth backend.
  3026. If your install was based purely on social accounts you'll need to use the standard reset password flows to recover accounts.
  3027. Redis must be at least version 2.6.12.
  3028. - Interface.compute_hashes() now receives the platform of the event.
  3029. - Server-side data scrubbers were incorrectly filtering invalid interface aliases.
  3030. - The sensitive_fields option is now exposed in project settings.
  3031. - The default logger name is now an empty value.
  3032. - Celery has been upgraded to 3.1 and is now available at 'sentry.celery'.
  3033. - Facebook, Google, and Twitter identities are no longer available.
  3034. - Plugin's inheriting from TagPlugin are now based on v2 of the API.
  3035. - Metrics (counters) are now collected both in sentry.tsdb and an optionally configured statsd
  3036. instance.
  3037. - Organizations can now toggle open membership which allows members to freely join/leave any team.
  3038. - ProjectKey.user has been removed.
  3039. - Organization API keys are now exposed in the UI.
  3040. - Team.owner has been removed.
  3041. - TeamMember has been removed.
  3042. - PendingTeamMember has been removed.
  3043. - Added OrganizationMember.counter.
  3044. - Added 'sentry.db.postgres' optimized Postgres backend.
  3045. - Added ReleaseTrackingPlugin and various release-focused endpoints.
  3046. - Dedicated configuration pages for Release Tracking and Issue Tracking integrations now exist.
  3047. - Several additions to the Release schema.
  3048. - Notification integrations are now present within project's notification settings.
  3049. - Fixed an issue with tag key deletion not following explicit constraints.
  3050. v7.4.3
  3051. ------
  3052. - Corrected various issues involving sampled data. Things should now sample according to actual MATH.
  3053. v7.4.2
  3054. ------
  3055. - Corrected invalid reference to SENTRY_ALLOW_REGISTRATION.
  3056. v7.4.1
  3057. ------
  3058. - Correct an issue with AuthProvider's migrations on MySQL.
  3059. v7.4.0
  3060. ------
  3061. - A new features subsystem was added, and many optional features are now run through it.
  3062. - The 'add_organization' permission is no longer used.
  3063. - The 'add_team' permission is no longer used.
  3064. - SENTRY_ALLOW_REGISTRATION is deprecated in favor of SENTRY_FEATURES['auth:register'].
  3065. - SOCIAL_AUTH_CREATE_USERS is deprecated in favor of SENTRY_FEATURES['social-auth:register'].
  3066. - SENTRY_SERVER_EMAIL is no longer used.
  3067. - Added first pass API at storing javascript artifacts via release APIs.
  3068. - Improved error reporting for JavaScript source/sourcemap errors.
  3069. - Improved configuration handling on sentry.cache.
  3070. - Added various release API endpoints.
  3071. - Added various organization API endpoints.
  3072. - Added various tag API endpoints.
  3073. - Sourcemaps will now always treat sourceRoot as a path.
  3074. - Changed many permissions to use new sentry.access abstractions which are now
  3075. scoped based, shared with the API scopes.
  3076. - Initial first pass at the SSO subsystem.
  3077. - The Sentry internal client will now aggressively prevent recursive errors, but allow more
  3078. internal errors to be recorded to itself.
  3079. - An XSS vulnerability with tag values not being escaped (on the group details page) has been resolved.
  3080. v7.3.2
  3081. ------
  3082. - Fixed missing beacon task import.
  3083. v7.3.1
  3084. ------
  3085. - Updated Gunicorn version and default configuration.
  3086. - Fixed periodic task for beacon.
  3087. v7.3.0
  3088. ------
  3089. - The SENTRY_ADMIN_EMAIL setting now exists, and should be the technical contact for the install.
  3090. - Fixed an issue that would cause job fanout in deletions.
  3091. - Notifications are now sent when someone assigns you to an event.
  3092. - Release objects are now created automatically.
  3093. - Changed team-based API endpoints to use slugs.
  3094. - New API endpoints:
  3095. - Help page list
  3096. - Help page details
  3097. - Group tag values
  3098. - Project tag values
  3099. - Moved JavaScript sourcemap processing into language extension.
  3100. - Sourcemap processing errors are now annotated into the frame.
  3101. - Refactored API to be scope-based permissions.
  3102. - Added backend support for organization API keys.
  3103. - Moved sentry_webhooks into builtins.
  3104. - Added reporting Beacon (see docs).
  3105. v7.2.0
  3106. ------
  3107. - A py.test plugin now exists to make extension testing easier.
  3108. - A Mailgun webhook endpoint is now available for incoming email.
  3109. - Added security token for JS source expansion.
  3110. - Duct tape workaround for event navigation buttons repeating the same event.
  3111. - Origins now support custom protocols as well as relaxed support on other components.
  3112. - Minor optimizations for deletion tasks and endpoints.
  3113. - Minor optimizations for Redis buffer.
  3114. - Added the ability to enable/disable project keys.
  3115. - Added audit log entries for project keys.
  3116. - Added UI, API, and async task for deleting project tag keys.
  3117. - Various fixes/improvements to regression windows.
  3118. - Rules will no longer execute duplicate actions.
  3119. - EventFrequencyCondition will now fire a maximum of once every 30 minutes.
  3120. v7.1.4
  3121. ------
  3122. - Fixed an issue with hourly rollups not expiring accurately in TSDB
  3123. 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:
  3124. https://gist.github.com/dcramer/55a44904be883f8d03e1
  3125. v7.1.3
  3126. ------
  3127. - Resolved an issue with migrations we created in 7.1.2.
  3128. v7.1.2
  3129. ------
  3130. - Fix migrations to ensure org/teams arent created with empty slugs.
  3131. v7.1.1
  3132. ------
  3133. - Suggest realip module over X-Forwarded-For
  3134. v7.1.0
  3135. ------
  3136. Plugin v2
  3137. ~~~~~~~~~
  3138. The beginnings of version 2 of the plugin interface have landed. This will expand over time but currently includes the following hooks:
  3139. - get_actions
  3140. - get_annotations
  3141. - get_event_preprocessors
  3142. - get_notifiers
  3143. - get_rules
  3144. - get_tags
  3145. Other Changes
  3146. ~~~~~~~~~~~~~
  3147. - crossdomain.xml no longer supports projects-by-slug.
  3148. - A basic file storage abstraction is now available internally.
  3149. - The project group list API endpoint now has pagination.
  3150. - Several API endpoints have been added to public docs.
  3151. - X-Forwarded-For is now handled automatically (and we do not support non-proxy installs).
  3152. - Various tweaks to GroupMeta caching.
  3153. - The raven-python Sentry server-specific client code is now part of Sentry.
  3154. - Various improvements to tag rendering.
  3155. - Various improvements to bulk deletion strategies.
  3156. - Added NodeStore.multi_delete.
  3157. v7.0.0
  3158. ------
  3159. 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.
  3160. 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.
  3161. Backwards Incompatible Changes
  3162. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  3163. - Django has been upgraded to 1.6
  3164. - The buffer API has been rewritten and the Redis buffer has had its performance greatly improved.
  3165. - The UDP server has been removed. Threaded/async models or a buffer proxy are the preferred replacement.
  3166. - The ``is_rate_limited`` plugin hook has been removed in favor of singular quota managers.
  3167. - The trends feature has been removed until it can be reimplemented in a more scalable way.
  3168. - Filters have been removed. Integrations should use the tagging infrastructure instead.
  3169. - ``NodeStore.generate_id()`` now returns a base64-encoded UUID.
  3170. - The API for interfaces has been rewritten.
  3171. - ``GroupMeta.objects.get_value`` no longer errors when a value is missing.
  3172. - ``sentry.plugins.sentry_sites`` has been removed.
  3173. - The Search API has been rewritten and now powers the entire stream.
  3174. - Removed Event.{logger,site,logger,level,culprit} references/columns. Legacy attributes for transitional behavior are available.
  3175. - Removed Project.owner.
  3176. - Removed Team.owner.
  3177. - ``is_new`` in ``Plugin.post_process`` will **only** be set if the event is brand new.
  3178. - Project-based URLs are changed to be organization scoped instead of team scoped.
  3179. - 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.
  3180. - Graphs have been transitiong to ``sentry.tsdb`` (historical data is not preserved)
  3181. - Workers must now also run ``celerybeat``. This can be done either via passing -B to worker, or by running another process: ``sentry celerybeat``.
  3182. - Access Groups are now deprecated and will be removed in a version version.
  3183. Organizations
  3184. ~~~~~~~~~~~~~
  3185. Organizations are the new top-level item of your Sentry install. All membership and team management has been moved into the new organization hub.
  3186. Generally for self-hosted installations you'll only have a single organization.
  3187. 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.
  3188. TSDB
  3189. ~~~~
  3190. 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``.
  3191. Rules
  3192. ~~~~~
  3193. 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?".
  3194. Web API
  3195. ~~~~~~~
  3196. The first offering a public API has landed. You'll find it with the new embedded docs (at /docs/).
  3197. Protocol Version 6
  3198. ~~~~~~~~~~~~~~~~~~
  3199. Version 6 of the protocol has been introduced. The only change is the addition of the `release` attribute.
  3200. BIGINT
  3201. ~~~~~~
  3202. 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.
  3203. Help Pages
  3204. ~~~~~~~~~~
  3205. The beginnings of bundled documentation now exists. The defaults are generated from disk (see sentry/data/help_pages/).
  3206. v6.4.0
  3207. ------
  3208. Some major backend changes are introduced in Sentry 6.4.0.
  3209. django.contrib.auth
  3210. ~~~~~~~~~~~~~~~~~~~
  3211. The builtin Django authentication module is no more. The Group and Permission models are no
  3212. longer used, and the User model has been replaced with sentry.User.
  3213. Search
  3214. ~~~~~~
  3215. Search has been abstracted from the simple search manager, and now lives within
  3216. ``sentry.search``. Currently only the Django backend is supported, but some sample
  3217. code for Solr Cloud integration is also available.
  3218. Event Storage
  3219. ~~~~~~~~~~~~~
  3220. A new application called ``nodestore`` now manages the event blob data. By default it
  3221. uses a Django-based backend (storing each node as a row in a table), however a Riak
  3222. backend is included and fully supported.
  3223. Additional Changes
  3224. ~~~~~~~~~~~~~~~~~~
  3225. - Some initial support for time zones (user setting).
  3226. - You can now choose which tag annotations are applied to the event stream via Project Settings -> Tags.
  3227. - A new subsystem for handling email is available in ``sentry.utils.email``.
  3228. - You can now receive email notifications for notes.
  3229. - Charts now show tooltips describing the datapoint.
  3230. - JavaScript sourcemaps now support embedded sources.
  3231. - Stream annotations can now be customized to show any tags (not just number of users).
  3232. - Stacktrace frames now get truncated down to a maximum length of 50.
  3233. Protocol Version 5
  3234. ~~~~~~~~~~~~~~~~~~
  3235. - sentry_version should be sent as '5'.
  3236. - The stacktrace interface now accepts a 'frames_omitted' tuple.
  3237. v6.3.0
  3238. ------
  3239. - Most of the db utilities were refactored into ``sentry.db``.
  3240. - The user interface now accepts an ``ip_address`` attribute.
  3241. - User tracking will now use the ip_address attribute if available.
  3242. - ``time_spent`` is now expected to be sent as an integer in milliseconds.
  3243. - A new Notes feature is available for leaving comments on an event.
  3244. v6.2.0
  3245. ------
  3246. - Added tracking to which users have seen which groups
  3247. - The stream now reflects if you've viewed an event since it was created or regressed.
  3248. - The group details page shows other users who have glanced at an event.
  3249. - Streams which have recorded user data will now show the number of unique users
  3250. an event has happened to.
  3251. - Various stream polling fixes and improvements.
  3252. v6.1.1 (Security Release)
  3253. -------------------------
  3254. Sentry 6.1.1 is a security release which patches a remote code execution exploit.
  3255. This only affects servers hosted public clients (e.g. raven.js).
  3256. The following commit demonstrates the exploit, as well as the patch:
  3257. https://github.com/getsentry/sentry/commit/5793c6cac19aeb7d2e19f9a09f4421b771af4306
  3258. v6.1.0
  3259. ------
  3260. - Added Rate Limit controls.
  3261. v6.0.0
  3262. ------
  3263. Say hello to our new logomark! Version 6 of Sentry includes many changes within
  3264. the core designed to improve future compatibility for various platforms.
  3265. It also includes quite a number of incompatible changes, so it's recommended
  3266. that plugin authors read through the notes carefully, and run some simply
  3267. sanity checks. It also introduces version 4 of the protocol.
  3268. Incompatible Changes
  3269. ~~~~~~~~~~~~~~~~~~~~
  3270. - Django has been upgraded to 1.5.
  3271. - django.contrib.auth.models.User has been replaced with sentry.models.User.
  3272. - sentry_servers no longer exists, and the behavior is now always present. If
  3273. you had it manually listed in INSTALLED_APPS, simply remove it.
  3274. - Filters have been deprecated, and most functionality removed. See notes below.
  3275. - TrackedUser, AffectedByUser, and Group.users_seen have been removed in favor
  3276. of reusing the tagging architecture for user tracking.
  3277. - Suspension of team members is no longer available. The feature was rarely
  3278. used, and removing it greatly simplifies the auth logic in the API.
  3279. - **The mail plugin can no longer be disabled, and all mail-specific options
  3280. have been removed.**
  3281. - Nearly all data within an event now has a fixed max size. See client
  3282. developer documentation for details.
  3283. - Project keys are no longer created for individuals by default
  3284. - sentry.conf.settings has been removed
  3285. - LOG_LEVELS, DEFAULT_LOG_LEVEL, and DEFAULT_LOGGER_NAME are no longer configurable.
  3286. - DEFAULT_ALERT_PROJECT_THRESHOLD and DEFAULT_ALERT_GROUP_THRESHOLD are no longer
  3287. configurable.
  3288. - SENTRY_EMAIL_SUBJECT_PREFIX and SENTRY_SERVER_EMAIL are no longer used, and default to
  3289. the appropriate Django options.
  3290. - SENTRY_CACHE_BACKEND is no longer configurable.
  3291. - SENTRY_AUTH_PROVIDERS is now AUTH_PROVIDERS.
  3292. - Existing account recovery tokens are no longer valid.
  3293. - sentry.utils.router has been removed.
  3294. Protocol Version 4
  3295. ~~~~~~~~~~~~~~~~~~
  3296. - sentry_version should be sent as '4'.
  3297. - Aliases are now recommended instead of full interface names.
  3298. - The exception interface now supports a bound stacktrace, and all events
  3299. (in all protocols) which contain both an exception and a stacktrace will
  3300. be rolled up. This should be sent as the ``stacktrace`` attribute.
  3301. - The exception interface now supports chained exceptions, and should
  3302. be sent as a list of exception values. Check the updated documentation for
  3303. ordering details.
  3304. Alerts
  3305. ~~~~~~
  3306. A basic alert system has been added.
  3307. - Configured at the project level.
  3308. - Signaled via Plugin.on_alert.
  3309. Filters
  3310. ~~~~~~~
  3311. The outdated filter system has been mostly removed. You should rely on
  3312. tagged data for filter generation.
  3313. If you were previously defining ``SENTRY_FILTERS`` you should remove it
  3314. from your settings as it will be entirely obsolete in a future version.
  3315. Other Changes
  3316. ~~~~~~~~~~~~~
  3317. - Activity feeds will now attempt to filter out some duplicates.
  3318. - Tags now show on the event details page.
  3319. - Corrected some invalid behavior when storing tags with an individual event.
  3320. - Plugin.get_tag_values was added.
  3321. - A new team select dashboard exists if you are a member of multiple teams.
  3322. - A new Sentry logo mark has replaced the simple text header.
  3323. - C# has been added to experimental clients.
  3324. v5.4.0
  3325. ------
  3326. SENTRY_PUBLIC now dictates whether or not a Sentry install should be considered
  3327. accessible by all users or not. This should better solve the use-case of companies
  3328. hosting a Sentry instance internally and not necessarily needing the permissions
  3329. that teams give you.
  3330. If enabled, all teams and all projects will be accessible all members (for any endpoint
  3331. which does not require a certain level of access). Project.is_public now dictates the
  3332. implied state of all events, but will not allow a non-member to browse events.
  3333. Additionally, this includes the following other items:
  3334. - [Important!] The URLS for social authentication have been moved.
  3335. - Improved rendering of data values in all interfaces.
  3336. - django-compressor was replaced with django-static-compiler.
  3337. - A better defined public view of events (which removes several items from being visible).
  3338. - Improved SourceMap discovery.
  3339. - Most events will no longer cause a hard error when validation fails. Instead we attempt
  3340. to drop any non-required data so that at least a partial event is stored.
  3341. - MessageCountByMinute was renamed to GroupCountByMinute.
  3342. - MessageFilterValue was renamed to GroupTag.
  3343. - Syntax highlighting was disabled (pending performance solutions).
  3344. - Added Team.date_added column.
  3345. - Lots of various design changes.
  3346. - Trending SQL queries can now be disabled by setting
  3347. ``SENTRY_USE_TRENDING = False``
  3348. v5.3.0
  3349. ------
  3350. A brand new Sentry design has landed.
  3351. Some things of note:
  3352. - An improved dashboard.
  3353. - Improved activity feeds on aggregate details.
  3354. - Similar event navigation links on aggregate details.
  3355. - Redesigned team management flow.
  3356. Additionally:
  3357. - Aggregates now happen on (project, checksum), which means events that have different
  3358. levels or culprits can now be grouped together.
  3359. - Sentry now requires authentication for all pages.
  3360. - SENTRY_PUBLIC behavior has changed to signify the default state of projects.
  3361. - Project slug's are now only unique within a team.
  3362. v5.2.2
  3363. ------
  3364. - [New] The dashboard will now stream updates to the new and trending event components.
  3365. v5.2.1
  3366. ------
  3367. - [Fix] Trends sorting options on the Stream page work correctly again.
  3368. v5.2.0
  3369. ------
  3370. - [New] A new activity stream exists on event pages.
  3371. - [New] Syntax highlighting now exists on all context frames.
  3372. - [New] Support for JavaScript Sourcemaps now exists.
  3373. - [New] The server will now fetch remote source files for JavaScript events.
  3374. - [New] Sentry will now ask for your project's platform.
  3375. - [Fix] Resolved -> Regressed state change is now atomic.
  3376. - [Fix] ``cleanup`` now runs with lower resource overhead.
  3377. - [Fix] Cookies will now be coerced to dicts if possible.
  3378. - More (storage only still) work on user tracking.
  3379. - Several indexes were added to speed up various queries.
  3380. - Removed savepoint use in plugin hooks (99% of the time there were no queries).
  3381. Additional, the following client protocol changes are part of this release:
  3382. - Cookies should be not be sent by default.
  3383. - POST data should not be sent by default.
  3384. - Recommended values regexp for sanitizing credit cards was updated.
  3385. - ``colno`` was added to the Stacktrace spec.
  3386. - Timestamps that are more than one minute in the future are now discarded.
  3387. - (Undocumented) Client-side support now exists for GET + Referrer store requests.
  3388. We've also reduced the test suite time down to 25% of what it originally was (thanks, Alex!)
  3389. v5.1.3
  3390. ------
  3391. A new user's affected-tracking mechanism is present (storage only). This will
  3392. become available in the UX in a future version, and relies on the existing HTTP
  3393. and User interface datas.
  3394. - [Fix] Correct a bug with search queries.
  3395. - [New] Group.users_seen will now track unique users when possible.
  3396. - [New] Team and project owners can now change ownership (non-superuser).
  3397. - [Fix] Counts are now formatted correctly when number of visible digits > 3.
  3398. v5.1.2
  3399. ------
  3400. - [Fix] Option schema (key length = 64).
  3401. - [Fix] Template interface now renders correctly.
  3402. - [Fix] Update design on admin status pages.
  3403. - [New] iOS client documentation.
  3404. - Improved client documentation visuals.
  3405. v5.1.1
  3406. ------
  3407. Several schema changes are made in this upgrade:
  3408. - A new model: LostPasswordHash
  3409. - Two new fields on ProjectKey: date_added and user_added
  3410. - A new field on Event: platform
  3411. - A new field on Group: platform
  3412. The following changes are also part of this release:
  3413. - [New] A new plugin, sentry-interface-types will now automatically tag the available interface
  3414. types in an event.
  3415. - [New] The platform value sent with an event is now recorded in the database.
  3416. - [New] A recover account flow has been added.
  3417. - [New] There is now a sticky nav on the event details pages.
  3418. - [New] getting started page now shows if there's no data for a project.
  3419. - [New] An API key management page now exists (under project settings).
  3420. - [New] A tag overview page now exists for group details pages.
  3421. - [Fix] Line numbers now show correctly in collapsed source context.
  3422. - [Fix] Pending members now show correctly on the team management page (under project settings).
  3423. - [Fix] The time since value now updates correctly when events change.
  3424. - Various changes to how event details components render.
  3425. - Various fixes for breadcrumbs and header styles.
  3426. - Most plugins will no longer default to enabled on new projects.
  3427. v5.1.0
  3428. ------
  3429. Minor point releases now signify major changes (5.1.0 is a major release). Bugfix and smaller
  3430. releases will continue as normal.
  3431. This release includes a very large set of changes from 5.0.0, including a new client protocol
  3432. and an overhaul to the frontend code (specifically the JavaScript).
  3433. If you're a contributor, take note that there is now a JavaScript test suite. You can run all
  3434. test suites with the ``make test`` command.
  3435. Protocol Version 3
  3436. ~~~~~~~~~~~~~~~~~~
  3437. Sentry 5.1 removes support for version 1.0 of the protocol, and maintains a compatibility layer
  3438. for version 2.0.
  3439. Additionally, the following changes apply to the new protocol:
  3440. - sentry_version should be sent as '3' (not 3.0).
  3441. - Signed messages are no longer supported (signatures are not calculated).
  3442. - sentry_signature is no longer used.
  3443. - sentry_timestamp is no longer used.
  3444. - Clients must pass sentry_secret for server-side requests as part of the auth
  3445. header. This check runs in the event that there is no Origin header sent.
  3446. - version 2.0 supports validation of this, version 3 requires it.
  3447. - The ``project`` attribute in the JSON packet is no longer required.
  3448. - The ``platform`` attribute is now recommended.
  3449. - The ``tags`` attribute is now recommended.
  3450. Other Changes
  3451. ~~~~~~~~~~~~~
  3452. - Aggregation 'Views' have been removed.
  3453. - All streaming components are now powered by Backbone.js.
  3454. - Frontend has been updated to Bootstrap 2.1.
  3455. - The event stream now includes sparklines representing the last 24 hours of data for each event.
  3456. - Trends have greatly improved.
  3457. - Grouping events that have identical stacktraces other than the function name (e.g. dynamically generated
  3458. functions) is not possible.
  3459. - SiteFilter has been removed, as has the sites plugin.
  3460. - If frames are included in a stacktrace that have the attribute ``in_app: false``, they will be hidden by default in
  3461. the details view.
  3462. - crossdomain.xml support is now available (see documentation).
  3463. - The search feature now uses buffers to better handle write concurrency.
  3464. - Early support for WSGI (should be functional) exists as ``sentry.wsgi``.
  3465. - Many fixes around cache usage.
  3466. v5.0.0
  3467. ------
  3468. - Variable versions of Django are no longer supported. Django 1.4.x must now be used.
  3469. - Public projects are restricted to viewing without being authenticated.
  3470. - The default behavior of Sentry is to now use timezone-aware datetimes everywhere.
  3471. - Permissions have been refactored to be more precise.
  3472. v4.10.0
  3473. -------
  3474. - A new IssuePlugin base is available.
  3475. - Charts have been refactored to show 7 days worth of data.
  3476. - django.contrib.staticfiles is now supported.
  3477. - django.contrib.messages is now supported.
  3478. v4.9.0
  3479. ------
  3480. Social authentication is now supported!
  3481. By configuring several options (documented in the getting started guide), you can allow users to signup and login
  3482. with accounts from several social services. Additionally users can associate their existing accounts (via a
  3483. new identities panel in their account settings) with any number of these services.
  3484. Currently, the following services are supported:
  3485. * GitHub
  3486. * Twitter
  3487. * Facebook
  3488. * Google
  3489. v4.8.0
  3490. ------
  3491. Tags are now able to be created dynamically! See the documentation for more details on implementing it inside
  3492. of your client.
  3493. You can also configure which tags will show up as filters in the sidebar via your project's settings page. By
  3494. default all tags will show up.
  3495. v4.7.0
  3496. ------
  3497. User options are now available to plugins. The builtin mail plugin also now takes advantage of them.
  3498. - sentry_mail will now use the alert_email option over your account email if specified.
  3499. - sentry_mail now allows you to choose which projects to receive alerts for.
  3500. - Numeric slugs will no longer return 404s.
  3501. - Corrected the repair command with the --owner argument.
  3502. v4.6.0
  3503. ------
  3504. Improvements to the dashboard are trickling in, with this update including:
  3505. - Changing "Top Events" to "Trends" (if supported by your RDBMS)
  3506. - Time interval selections for both widgets
  3507. Plugins now have a new interface for registering themselves. Please see the developer documentation
  3508. for notes on how to use ``entry_points``.
  3509. Additionally:
  3510. - Signed messages are now deprecated. Save yourself some CPU cycles, and rely on SSL.
  3511. - A new plugin which tags user's email addresses.
  3512. - Several UI cleanups in various areas, such as improvements to the account dropdown and lists of projects/teams.
  3513. - Long awaited cleanup/fixes for applying the initial database migrations (sorry MySQL users).
  3514. - Initial support for arbitrary event tagging (coming soon to a client near you).
  3515. v4.5.0
  3516. ------
  3517. Builtin plugins have been refactored to be more concise. This includes changes to the
  3518. servers, urls, and sites plugins. There is also a new builtin plugin::
  3519. sentry.plugins.sentry_useragents
  3520. With these changes, it now makes it even easier to create a basic plugin that just handles extra
  3521. "tag"-like data. Take a look at one of the aforementioned plugins for an example.
  3522. Additionally:
  3523. - The mail plugin now sends additional Sentry-specific headers.
  3524. - Signatures are deprecated, and no longer required.
  3525. - Several fixes regarding CORS support.
  3526. v4.4.0
  3527. ------
  3528. Two new columns were added to the ``Group`` model:
  3529. - ``resolved_at``: The datetime at which this event was marked as resolved.
  3530. - ``active_at``: The datetime at which this event was marked as open.
  3531. The dashboard's "New Events" will now use the active_at date rather than the original
  3532. first seen date on an event.
  3533. v4.3.0
  3534. ------
  3535. A new global dashboard now exists. The dashboard contains an event graph for all projects which
  3536. you have access to, as well as a list of the top events, and new events.
  3537. Additionally:
  3538. - API endpoints now properly send no-cache headers.
  3539. - Added a countdown to update buffers.
  3540. v4.2.0
  3541. ------
  3542. Sentry now has support for buffering a majority of its counters via Redis. For more information, check
  3543. the buffer section of the configuration documentation.
  3544. - Nearly all race conditions are now handled correctly using distributed cache locks.
  3545. v4.1.0
  3546. ------
  3547. Sentry now maintains full support for CORS requests from external hosts. This means that clients like
  3548. raven-js will now able to securely send messages to Sentry, without compromising their secret key.
  3549. In addition:
  3550. - Trusted domains were removed. These were not fully implemented.
  3551. - A new datepicker for selecting ranges of events.
  3552. - raven-javascript and raven-ruby are now officially supported clients.
  3553. - Added ``sentry repair``.
  3554. v4.0.0
  3555. ------
  3556. Introducing Teams!
  3557. Projects are now assigned to a single team, and that team may consist of many members. Additionally
  3558. each team may own multiple projects. This makes it much easier to handle permissions across a single
  3559. organization that has many projects.
  3560. This update also includes initial changes to how filters work. ServerName Filter and SiteFilter are
  3561. no longer specified in the ``FILTERS`` setting, but instead are included automatically if you
  3562. load the respective ``sentry_servers`` and ``sentry_sites`` plugins.
  3563. Additional changes:
  3564. - Legacy data format is no longer supported (pre-Raven 1.x)
  3565. - API will now validate data before sending it into the queue, enabling better debugging for clients.
  3566. v3.8.0
  3567. ------
  3568. Plugins are now configurable per-project. This makes it easy to install a plugin globally
  3569. and allow it to run only on selective projects.
  3570. v3.7.0
  3571. ------
  3572. Several minor fixes, as well as a backwards incompatible change with filters.
  3573. All filters must now accept the project argument in the initializer. The signature is
  3574. now __init__(request, project).
  3575. v3.6.0
  3576. ------
  3577. This version focuses on improving membership control. It includes the ability to revoke
  3578. project members access temporarily (by suspending them), as well as revoking users
  3579. (outside of Sentry) via the user.is_active flag.
  3580. Additionally, it brings the beginnings of an "invite user" flow, allowing you to
  3581. invite users who may or may not already have accounts in the system. We plan to improve
  3582. this flow in an upcoming release to allow invitees easy registration within the system
  3583. if they don't already have an account.
  3584. v3.5.0
  3585. ------
  3586. Several improvements and additions have been made around the administration, including
  3587. performance improvements.
  3588. If you're utilizing the queue, the installation guide now recommends you switch off the
  3589. database backend, and move to something more efficient (such as Redis).
  3590. v3.4.0
  3591. ------
  3592. Eventlet is no longer used as the default worker for gunicorn, and thus is no longer
  3593. installed by default. If you're using the udp worker, or ``send_fake_data`` you MUST
  3594. install eventlet yourself. The recommended worker class for gunicorn is now ``gevent``
  3595. as it corrects some issues with async queries in psycopg2.
  3596. v3.3.0
  3597. ------
  3598. The queue has been changed from direct Kombu, to utilizing Celery entirely. If you were
  3599. already using the queue, the upgrade simply requires you to change "sentry start worker"
  3600. to "sentry celeryd".
  3601. v3.0.0
  3602. ------
  3603. Version 3 of Sentry is centered around a restructure of the internal services and
  3604. the architecture for running those. It also includes improvements to the plugin architecture.
  3605. The upgrade process should be trivial, just be aware that if you were using --config before
  3606. you must change the way you pass it so that it's before the subcommand. For example
  3607. if you were doing ``sentry start --config...`` the command would now be changed to
  3608. ``sentry --config... start``.
  3609. * Sentry no longer provides the ability to daemonize processes. This should now be
  3610. done at the system level.
  3611. * All of Sentry's CLI is now handled through Logan (https://github.com/dcramer/logan),
  3612. which simply pipes commands to Django's internal system utilizing custom configuration.
  3613. * Plugins now have a hook for managing some level of permissions (beyond the required defaults).
  3614. * The plugin interface (IPlugin) is now documented.
  3615. * It is now recommended that clients allow the Sentry server to compute checksums.
  3616. v2.9.0
  3617. ------
  3618. * Plugins must now behave as singletons and be registered with a newly provided
  3619. sentry.plugins.@register decorator.
  3620. * The Bugzilla and Redmine extensions are no longer part of Sentry core.
  3621. * Added a global overview of projects to the administration.
  3622. v2.8.0
  3623. ------
  3624. * Added an Account Settings panel which allows users to change their name,
  3625. email, and password.
  3626. * The default Sentry server now correctly wraps itself in its own middleware.
  3627. * Improved Real-time JavaScript.
  3628. v2.7.0
  3629. ------
  3630. * Added first_seen and last_seen to all message filter values.
  3631. * Added a new "since" option to the dashboard with a default value of 3 days.
  3632. v2.6.0
  3633. ------
  3634. * The built-in webserver is now powered by gunicorn.
  3635. * Cleaned up several admin pages and split them into sub-pages.
  3636. v2.5.0
  3637. ------
  3638. * Corrected some queue behavior.
  3639. * Resolve Feed now only resolves items active within current filters.
  3640. * Handle unicode characters in POST body for replay request.
  3641. * Ensure client side requests run checks on HTTP_REFERER
  3642. * Adjust documentation for service settings.
  3643. v2.4.5
  3644. ------
  3645. * Corrected indexing behavior to handle non strings.
  3646. * If queuing is enabled the indexer will now queue it's jobs.
  3647. * Moved group creation into a transaction.
  3648. v2.4.4
  3649. ------
  3650. * Mail configuration value of send_to now correctly uses ',' as a separator
  3651. (rather than ';').
  3652. * Changed rendering of sidebar widgets for all builtin extensions.
  3653. * Added an event details slot to the sidebar pane for individual events.
  3654. v2.4.3
  3655. ------
  3656. * Correct some behavior with MySQL on the groups pane.
  3657. * Correct generated configuration behavior to use absolute
  3658. paths for run and log folders.
  3659. v2.4.2
  3660. ------
  3661. * Include DSN and member type on projects list grid.
  3662. v2.4.1
  3663. ------
  3664. * Change appearance of resolve states.
  3665. * Adjust user management to link username (which is required) and not
  3666. optional fields.
  3667. v2.4.0
  3668. ------
  3669. * Added user management for admins.
  3670. * Resolved events should now appear differently.
  3671. * Default membership access is now configurable.
  3672. v2.3.2
  3673. ------
  3674. * Maintaining *some* level of support for SQLite.
  3675. v2.3.1
  3676. ------
  3677. * Correct rendering of sites, urls, and servers on details panes.
  3678. v2.3.0
  3679. ------
  3680. * The polling API and JavaScript have been refactored.
  3681. Events now stream in (they generally do not update if they already
  3682. exist), and will maintain correct ordering in the feed.
  3683. This API is available for most sort options, excluding trends.
  3684. * The builtin plugin's widgets have been fixed.
  3685. * Sampling rates are now configurable.
  3686. * Some minor design tweaks.
  3687. v2.2.5
  3688. ------
  3689. * The \|date filter now forces things to UTC (it assumes local time).
  3690. * Event templates have been updated to resemble groups.
  3691. v2.2.4
  3692. ------
  3693. * Improve error logging in API.
  3694. * Update Celery client code to use new send_encoded interfaces.
  3695. * Change JS datetimes to use UTC.
  3696. * Force clients which specify version 2.0 or newer to pass identification.
  3697. * Better default logging configuration.
  3698. * Adjust eventlet to monkey patch the world before any imports happen.
  3699. * Adjust default configuration to specify LOG and RUN directories.
  3700. * upgrade now correctly handles the delete ghosts argument.
  3701. v2.2.3
  3702. ------
  3703. * Lower font size of counts on event list.
  3704. * Align actions to right side (vertical).
  3705. * Fix issue with long filters not transforming to selects.
  3706. v2.2.2
  3707. ------
  3708. * Corrected event_id key to contain (project_id, event_id).
  3709. * Adjusted project form to default the user to the current user
  3710. when accessed by an admin.
  3711. * Change sentry admin to be /manage/ to avoid any unintentional
  3712. conflict with the Django admin.
  3713. v2.2.1
  3714. ------
  3715. * Cleaned up several pages.
  3716. v2.2.0
  3717. ------
  3718. * Sentry has a brand new design utilizing Bootstrap 2.
  3719. * Superusers can now create projects for users.
  3720. v2.1.3
  3721. ------
  3722. * Ensure we truncate tokens to 128 characters for SearchDocument.
  3723. * Gracefully handle errors with indexing.
  3724. * Gracefully handle errors with post_process.
  3725. * Gracefully handle errors with regression_signal.
  3726. * Fixed priority sort option not activating.
  3727. v2.1.2
  3728. ------
  3729. * Fixed an issue that was causing signals to not be registered.
  3730. * Made date the default sort order for aggregate stream.
  3731. v2.1.1
  3732. ------
  3733. * Fixed an issue with indexing pre and post context on templates.
  3734. v2.1.0
  3735. ------
  3736. * ``pytz`` is now a requirement.
  3737. * Changed default TIME_ZONE to be "UTC".
  3738. * Corrected some issues around how dates were localized.
  3739. * Initial implementation of full-text search.
  3740. * Fixed sending of regression_signal so it only happens if event
  3741. has been marked as new.
  3742. * Changed ProjectMember.get_dsn() to use request.get_host() which
  3743. corrects a bug in some webservers.
  3744. v2.0.2
  3745. ------
  3746. * ``start`` no longer performs ``upgrade`` as its problematic.
  3747. * Initial queue usage (optional).
  3748. * Fix reference to bookmark_querystring.
  3749. * Added DSN to project member details page.
  3750. v2.0.1
  3751. ------
  3752. * Skip logging of south in default server configuration as it proves to be problematic.
  3753. * Remove use of deprecated logging handler in default server configuration.
  3754. * Run ``upgrade`` as part of ``start``.
  3755. * Fix GroupBookmark related_name to be sentry namespaced.
  3756. * Correctly handle before_events() hook in polling responses.
  3757. * Removed integrated install documentation as it is no longer officially supported.
  3758. * Gracefully handle rendering errors with interfaces.
  3759. * Correct a bug with default email options.
  3760. v2.0
  3761. ----
  3762. Sentry 2.0 is a major release which contains many new features as well as some large
  3763. rearchitecting of the codebase.
  3764. If you were previously extending Sentry, it would be wise
  3765. to test your extensions before upgrading.
  3766. * Added project scoping to all data in sentry.
  3767. * Added permissions to projects.
  3768. * The authorization header is now X-Sentry-Auth to avoid certain default behaviors such as
  3769. mod_wsgi's "don't pass HTTP Authorization header".
  3770. * sentry.client has been removed
  3771. * The default key is now base64-encoded.
  3772. * sentry.interfaces are now used for coercing and rendering structured data.
  3773. * The store endpoint has a new API.
  3774. * The from_kwargs method has a new API.
  3775. * The ``class_name``, ``traceback``, an ``url`` fields have been removed.
  3776. * GroupedMessage was renamed to Group.
  3777. * Message was renamed to Event.
  3778. * Switched to Bootstrap framework.
  3779. * Added "Replay Request" action for events.
  3780. * Graphs can now be generated for Projects.
  3781. * There is now a trends sort option for aggregated events.
  3782. * Added ``sentry manage`` command.
  3783. * Sentry now has its own isolated queues (using Kombu).
  3784. v1.13.5
  3785. -------
  3786. * Level filters are now precise (they no longer show their level + messages from higher levels).
  3787. v1.13.4
  3788. -------
  3789. * Updated message details page to resemble look and feel of group details.
  3790. v1.13.3
  3791. -------
  3792. * Added back in the "raw traceback" view.
  3793. v1.13.2
  3794. -------
  3795. * Counts will now render differently with large values (e.g. 13000 will now be 13k)
  3796. v1.13.1
  3797. -------
  3798. * Search by message_id will now display a list of results if there are multiple matches.
  3799. v1.13.0
  3800. -------
  3801. * Deprecated the Sentry client, and added Raven to the as the default builtin.
  3802. * Removed Highstock and replaced it with an awesome OPEN SOURCE alternative, jQuery Flot.
  3803. * Default Sentry server options should now work out of the box.
  3804. * Packaged Google Web Font as part of Sentry.
  3805. v1.12.2
  3806. -------
  3807. * Fixed infinite loop.
  3808. v1.12.1
  3809. -------
  3810. * Stabilize migration schema (solves problem with index creation fail introduced in 1.12.0).
  3811. v1.12.0
  3812. -------
  3813. * Adjusted message_id to include the checksum to avoid situations were the message_id
  3814. that was generated did not exist due to sampling.
  3815. v1.11.4
  3816. -------
  3817. * Several design improvements for group/message details panes.
  3818. v1.11.3
  3819. -------
  3820. * Fixed a bug that was causing exception summary to not show.
  3821. v1.11.2
  3822. -------
  3823. * Cleaned up message and group details pages (adding back some missing information).
  3824. * Cleaned up some design around odd margins/padding.
  3825. v1.11.1
  3826. -------
  3827. * Fixed a bug that would cause the admin (and potentially other modules) to get loaded multiple times.
  3828. v1.11.0
  3829. -------
  3830. * Added license headers.
  3831. * Removed ``sentry.helpers`` and ``sentry.routers``.
  3832. * Global module versions are now cached to avoid continuous path walking and
  3833. import overhead.
  3834. v1.10.1
  3835. -------
  3836. * Fixed an issue that was causing servers to show logger names.
  3837. v1.10.0
  3838. -------
  3839. * You can now pass ``extra={'stack': True}`` to logging methods to capture
  3840. the current frames and their locals.
  3841. * Code refactoring in various places related to stack extraction.
  3842. * Denormalized graph data in MessageCountByMinute (stores at 5m intervals).
  3843. * Denormalized filter counts into MessageFilterValue
  3844. * Added message sampling (adapted from Yuri Baburov's patch).
  3845. * Added SENTRY_MAIL_LEVEL setting.
  3846. * Added SENTRY_MAIL_INCLUDE_LOGGERS setting.
  3847. * Added SENTRY_MAIL_EXCLUDE_LOGGERS setting.
  3848. * Added the ``level`` argument to the cleanup command.
  3849. * The thrashed key is now set correctly in request.sentry.
  3850. * Added user information to all messages that have ``request``.
  3851. * Changed the hashing function for messages that include
  3852. stacktraces to ignore the ``message`` and line numbers.
  3853. * Much improved test coverage.
  3854. v1.9.0
  3855. ------
  3856. * Load the Frequency chart asynchronously.
  3857. * Frequency chart no longer shows for SQLite.
  3858. * Switch graphing library to Highstock from Highcharts.
  3859. v1.8.10
  3860. -------
  3861. * Ensure dictionary keys are coerced to strings.
  3862. * Fixed path to missing_permissions.html.
  3863. v1.8.9
  3864. ------
  3865. * Safely handle unpickling objects that may not have been stored in a
  3866. valid format.
  3867. v1.8.8
  3868. ------
  3869. * Changed ``sentry cleanup`` to use a range query.
  3870. v1.8.7
  3871. ------
  3872. * Added "Clear Feed" option.
  3873. * Version information will be read from pkg_resources if possible.
  3874. * Cleared up documentation on configuration settings..
  3875. * Performance improvements to ``Client.send()``.
  3876. * Added default 404/500 pages.
  3877. * Added support for Django's LOGIN_URL setting.
  3878. * Fixed a memory leak in the client (thanks to Ben Bangert).
  3879. v1.8.6.2
  3880. --------
  3881. * Reverted change which required distribute.
  3882. * Cleaned up configuration defaults.
  3883. v1.8.6.1
  3884. --------
  3885. * Include distribute_setup.py in the MANIFEST to ship it in sdists.
  3886. v1.8.6
  3887. ------
  3888. * Corrected an issue which was causing certain settings (like WEB_HOST) to
  3889. not take affect in custom configuration files.
  3890. * The Sentry server will now pull in default server settings, as well as
  3891. ~/.sentry/sentry.conf.py if --config is not passed to it.
  3892. v1.8.5.1
  3893. --------
  3894. * Fixed a bug which caused thrashing prevention to not function correctly.
  3895. * Corrected an error in transform()'s recursion safety.
  3896. * Changed packaging to use Distribute.
  3897. v1.8.5
  3898. ------
  3899. * Pulled test suite out of the Sentry namespace to avoid conflicts in projects.
  3900. v1.8.4.2
  3901. --------
  3902. * Added missing invalid_message_id template.
  3903. v1.8.4.1
  3904. --------
  3905. * Fixed an error that was causing LOG_LEVELS to not display correctly.
  3906. v1.8.4
  3907. ------
  3908. * The Sentry base client will now pass along the timestamp from when the
  3909. message was generated.
  3910. v1.8.3.1
  3911. --------
  3912. * Fixed a case where the client may hit a transaction aborted error when
  3913. transforming variables.
  3914. v1.8.3
  3915. ------
  3916. * Added several settings which were Django specific so that they can be
  3917. configured isolated to the Sentry instance.
  3918. * Graceful failover for when a cache backend isnt working properly and
  3919. throttling is enabled.
  3920. * Better rendering of non-dict variables when passed within extra data.
  3921. * Graceful failover for searching on message_id's that aren't found.
  3922. v1.8.0
  3923. ------
  3924. * Refactored Sentry server to run standalone (sentry --help).
  3925. v1.7.5
  3926. ------
  3927. * Implemented new client/server storage API and signing methods.
  3928. * Fixed a bug where accessing __sentry__ would sometimes cause errors on
  3929. certain code paths.
  3930. v1.7.4
  3931. ------
  3932. * Fixed a bug with potential recursion issues.
  3933. * Fixed a bug with the storage API and unicode keys.
  3934. v1.7.3
  3935. ------
  3936. * Storage API has better responses when data fails to decode, or
  3937. you send a bad request.
  3938. * Documentation improvements for JSON storage API.
  3939. v1.7.2
  3940. ------
  3941. * All strings, lists, tuples, and sets are now shortened before sending
  3942. to the server. Iterable data structures are truncated to the first
  3943. 50 items, and strings are truncated to the first 200 characters.
  3944. Both shorteners have configurable values in the settings.
  3945. v1.7.1
  3946. ------
  3947. * Fixed a bug that slipped through with blocktrans usage.
  3948. v1.7.0
  3949. ------
  3950. * Added ``score`` to ``GroupedMessage`` (schema change).
  3951. * Added ``MessageIndex`` (schema change).
  3952. * Added Async client (thanks to Yuri Baburov).
  3953. * Added support for raw_post_data (thanks to Matthew Schinckel).
  3954. * django-paging and django-indexer no longer need to be in INSTALLED_APPS.
  3955. * Added an index for GroupedMessages.times_seen.
  3956. * The ``score`` column will update atomically in PostgreSQL and MySQL.
  3957. * Added the frequency sort option.
  3958. * Better internationalization support.
  3959. * Fixed a bug with Oracle's date truncation support (changed to hh24).
  3960. * Respect TIME_ZONE by using auto_now_* on DateTimeField's.
  3961. * Tests required Haystack and Celery are now skipped if module is not found.
  3962. v1.6.10
  3963. -------
  3964. * Added JSON support to storage API.
  3965. * Changed default client to use JSON format.
  3966. v1.6.9.1
  3967. --------
  3968. * Fixed an issue with encoding to UTF-8 for Haystack.
  3969. v1.6.9
  3970. ------
  3971. * Added URLs to default search parameters.
  3972. * Fixed a bug to ensure template information is only added if its the correct loader
  3973. v1.6.8.1
  3974. --------
  3975. * Search will now show when unauthenticated (e.g. when SENTRY_PUBLIC is enabled)
  3976. v1.6.8
  3977. ------
  3978. * Search no longer allows filters.
  3979. * Search no longer allows arbitrary queries without Haystack.
  3980. * Added logger, level, site, server, and url to search index.
  3981. * Haystack has been updated for further flexibility.
  3982. * SearchFilter is now unused (you should update your configs).
  3983. v1.6.7
  3984. ------
  3985. * Moved static media into /static/.
  3986. * Added serve_static view to handle static media solely within Sentry.
  3987. * Added SENTRY_STATIC_URL_PREFIX setting.
  3988. v1.6.6
  3989. ------
  3990. * setup.py install will no longer install example_project.
  3991. * Fixed an issue where __sentry__ would be called even if it wasn't a callable.
  3992. * Fixed an issue where transactions would attempt a rollback when not managed while creating
  3993. the sort index.
  3994. v1.8.8
  3995. ------
  3996. * Set a last_message_id so when thrashing is hit there is still a point of reference for tracing.
  3997. * Check correct permissions for Sentry.
  3998. v1.6.4
  3999. ------
  4000. * Fixed a memory leak due to TextNode's being created from leading whitespace in realtime packets.
  4001. v1.6.3
  4002. ------
  4003. * Fixed a critical bug in the Sentry JS namespace preventing it from loading.
  4004. v1.6.2
  4005. ------
  4006. * LogHandler will attempt to pick up the request automatically using SentryLogMiddleware.
  4007. * Updated AJAX CSRF support for Django 1.2.5.
  4008. * request.sentry is now set in any event which has request as part of the parameters.
  4009. v1.6.0
  4010. ------
  4011. * Added message references (uuid's) as message_id in Message
  4012. * Fixed css compatibility issues with TextWidget
  4013. * SearchFilter now allows searching by message reference id
  4014. * Added Sentry404CatchMiddleware
  4015. * Added SentryResponseErrorIdMiddleware
  4016. * The `request` argument can now be passed into any ``create_from_`` method.
  4017. (History beyond 1.6.0 is not present)