CHANGES 138 KB

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