CHANGES 130 KB

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