CHANGES 188 KB

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