CHANGES 104 KB

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