CHANGES 80 KB

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