CHANGES 79 KB

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