CHANGES 90 KB

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