CHANGES 193 KB

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