CHANGES 36 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105
  1. Version 6.4.0
  2. -------------
  3. Some major backend changes are introduced in Sentry 6.3.0.
  4. Search
  5. ======
  6. Search has been abstracted from the simple search manager, and now lives within
  7. ``sentry.search``. Currently only the Django backend is supported, but some sample
  8. code for Solr Cloud integration is also available.
  9. Event Storage
  10. =============
  11. A new application called ``nodestore`` now manages the event blob data. By default it
  12. uses a Django-based backend (storing each node as a row in a table), however a Riak
  13. backend is included and fully supported.
  14. Additional Changes
  15. ==================
  16. - Some initial support for time zones (user setting).
  17. - You can now choose which tag annotations are applied to the event stream via Project Settings -> Tags.
  18. - A new subsystem for handling email is available in ``sentry.utils.email``.
  19. - You can now receive email notifications for notes.
  20. - Charts now show tooltips describing the datapoint.
  21. - JavaScript sourcemaps now support embedded sources.
  22. - Stream annotations can now be customized to show any tags (not just number of users).
  23. Version 6.3.0
  24. -------------
  25. - Most of the db utilities were refactored into ``sentry.db``.
  26. - The user interface now accepts an ``ip_address`` attribute.
  27. - User tracking will now use the ip_address attribute if available.
  28. - ``time_spent`` is now expected to be sent as an integer in milliseconds.
  29. - A new Notes feature is available for leaving comments on an event.
  30. Version 6.2.0
  31. -------------
  32. - Added tracking to which users have seen which groups
  33. - The stream now reflects if you've viewed an event since it was created or regressed.
  34. - The group details page shows other users who have glanced at an event.
  35. - Streams which have recorded user data will now show the number of unique users
  36. an event has happened to.
  37. - Various stream polling fixes and improvements.
  38. Version 6.1.1 (Security Release)
  39. --------------------------------
  40. Sentry 6.1.1 is a security release which patches a remote code execution exploit.
  41. This only affects servers hosted public clients (e.g. raven.js).
  42. The following commit demonstrates the exploit, as well as the patch:
  43. https://github.com/getsentry/sentry/commit/5793c6cac19aeb7d2e19f9a09f4421b771af4306
  44. Version 6.1.0
  45. -------------
  46. - Added Rate Limit controls.
  47. Version 6.0.0
  48. -------------
  49. Say hello to our new logomark! Version 6 of Sentry includes many changes within
  50. the core designed to improve future compatibility for various platforms.
  51. It also includes quite a number of incompatible changes, so it's recommended
  52. that plugin authors read through the notes carefully, and run some simply
  53. sanity checks. It also introduces version 4 of the protocol.
  54. Incompatible Changes
  55. ====================
  56. - Django has been upgraded to 1.5.
  57. - django.contrib.auth.models.User has been replaced with sentry.models.User.
  58. - sentry_servers no longer exists, and the behavior is now always present. If
  59. you had it manually listed in INSTALLED_APPS, simply remove it.
  60. - Filters have been deprecated, and most functionality removed. See notes below.
  61. - TrackedUser, AffectedByUser, and Group.users_seen have been removed in favor
  62. of reusing the tagging architecture for user tracking.
  63. - Suspension of team members is no longer available. The feature was rarely
  64. used, and removing it greatly simplifies the auth logic in the API.
  65. - **The mail plugin can no longer be disabled, and all mail-specific options
  66. have been removed.**
  67. - Nearly all data within an event now has a fixed max size. See client
  68. developer documentation for details.
  69. - Project keys are no longer created for individuals by default
  70. - sentry.conf.settings has been removed
  71. - LOG_LEVELS, DEFAULT_LOG_LEVEL, and DEFAULT_LOGGER_NAME are no longer configurable.
  72. - DEFAULT_ALERT_PROJECT_THRESHOLD and DEFAULT_ALERT_GROUP_THRESHOLD are no longer
  73. configurable.
  74. - SENTRY_EMAIL_SUBJECT_PREFIX and SENTRY_SERVER_EMAIL are no longer used, and default to
  75. the appropriate Django options.
  76. - SENTRY_CACHE_BACKEND is no longer configurable.
  77. - SENTRY_AUTH_PROVIDERS is now AUTH_PROVIDERS.
  78. - Existing account recovery tokens are no longer valid.
  79. - sentry.utils.router has been removed.
  80. Protocol Version 4
  81. ==================
  82. - sentry_version should be sent as '4'.
  83. - Aliases are now recommended instead of full interface names.
  84. - The exception interface now supports a bound stacktrace, and all events
  85. (in all protocols) which contain both an exception and a stacktrace will
  86. be rolled up. This should be sent as the ``stacktrace`` attribute.
  87. - The exception interface now supports chained exceptions, and should
  88. be sent as a list of exception values. Check the updated documentation for
  89. ordering details.
  90. Alerts
  91. ======
  92. A basic alert system has been added.
  93. - Configured at the project level.
  94. - Signaled via Plugin.on_alert.
  95. Filters
  96. =======
  97. The outdated filter system has been mostly removed. You should rely on
  98. tagged data for filter generation.
  99. If you were previously defining ``SENTRY_FILTERS`` you should remove it
  100. from your settings as it will be entirely obsolete in a future version.
  101. Other Changes
  102. =============
  103. - Activity feeds will now attempt to filter out some duplicates.
  104. - Tags now show on the event details page.
  105. - Corrected some invalid behavior when storing tags with an individual event.
  106. - Plugin.get_tag_values was added.
  107. - A new team select dashboard exists if you are a member of multiple teams.
  108. - A new Sentry logo mark has replaced the simple text header.
  109. - C# has been added to experimental clients.
  110. Version 5.4.0
  111. -------------
  112. SENTRY_PUBLIC now dictates whether or not a Sentry install should be considered
  113. accessible by all users or not. This should better solve the use-case of companies
  114. hosting a Sentry instance internally and not necessarily needing the permissions
  115. that teams give you.
  116. If enabled, all teams and all projects will be accessible all members (for any endpoint
  117. which does not require a certain level of access). Project.is_public now dictates the
  118. implied state of all events, but will not allow a non-member to browse events.
  119. Additionally, this includes the following other items:
  120. - [Important!] The URLS for social authentication have been moved.
  121. - Improved rendering of data values in all interfaces.
  122. - django-compressor was replaced with django-static-compiler.
  123. - A better defined public view of events (which removes several items from being visible).
  124. - Improved SourceMap discovery.
  125. - Most events will no longer cause a hard error when validation fails. Instead we attempt
  126. to drop any non-required data so that at least a partial event is stored.
  127. - MessageCountByMinute was renamed to GroupCountByMinute.
  128. - MessageFilterValue was renamed to GroupTag.
  129. - Syntax highlighting was disabled (pending performance solutions).
  130. - Added Team.date_added column.
  131. - Lots of various design changes.
  132. - Trending SQL queries can now be disabled by setting
  133. ``SENTRY_USE_TRENDING = False``
  134. Version 5.3.0
  135. -------------
  136. A brand new Sentry design has landed.
  137. Some things of note:
  138. - An improved dashboard.
  139. - Improved activity feeds on aggregate details.
  140. - Similar event navigation links on aggregate details.
  141. - Redesigned team management flow.
  142. Additionally:
  143. - Aggregates now happen on (project, checksum), which means events that have different
  144. levels or culprits can now be grouped together.
  145. - Sentry now requires authentication for all pages.
  146. - SENTRY_PUBLIC behavior has changed to signify the default state of projects.
  147. - Project slug's are now only unique within a team.
  148. Version 5.2.2
  149. -------------
  150. - [New] The dashboard will now stream updates to the new and trending event components.
  151. Version 5.2.1
  152. -------------
  153. - [Fix] Trends sorting options on the Stream page work correctly again.
  154. Version 5.2.0
  155. -------------
  156. - [New] A new activity stream exists on event pages.
  157. - [New] Syntax highlighting now exists on all context frames.
  158. - [New] Support for JavaScript Sourcemaps now exists.
  159. - [New] The server will now fetch remote source files for JavaScript events.
  160. - [New] Sentry will now ask for your project's platform.
  161. - [Fix] Resolved -> Regressed state change is now atomic.
  162. - [Fix] ``cleanup`` now runs with lower resource overhead.
  163. - [Fix] Cookies will now be coerced to dicts if possible.
  164. - More (storage only still) work on user tracking.
  165. - Several indexes were added to speed up various queries.
  166. - Removed savepoint use in plugin hooks (99% of the time there were no queries).
  167. Additional, the following client protocol changes are part of this release:
  168. - Cookies should be not be sent by default.
  169. - POST data should not be sent by default.
  170. - Recommended values regexp for sanitizing credit cards was updated.
  171. - ``colno`` was added to the Stacktrace spec.
  172. - Timestamps that are more than one minute in the future are now discarded.
  173. - (Undocumented) Client-side support now exists for GET + Referrer store requests.
  174. We've also reduced the test suite time down to 25% of what it originally was (thanks, Alex!)
  175. Version 5.1.3
  176. -------------
  177. A new user's affected-tracking mechanism is present (storage only). This will
  178. become available in the UX in a future version, and relies on the existing HTTP
  179. and User interface datas.
  180. - [Fix] Correct a bug with search queries.
  181. - [New] Group.users_seen will now track unique users when possible.
  182. - [New] Team and project owners can now change ownership (non-superuser).
  183. - [Fix] Counts are now formatted correctly when number of visible digits > 3.
  184. Version 5.1.2
  185. -------------
  186. - [Fix] Option schema (key length = 64).
  187. - [Fix] Template interface now renders correctly.
  188. - [Fix] Update design on admin status pages.
  189. - [New] iOS client documentation.
  190. - Improved client documentation visuals.
  191. Version 5.1.1
  192. -------------
  193. Several schema changes are made in this upgrade:
  194. - A new model: LostPasswordHash
  195. - Two new fields on ProjectKey: date_added and user_added
  196. - A new field on Event: platform
  197. - A new field on Group: platform
  198. The following changes are also part of this release:
  199. - [New] A new plugin, sentry-interface-types will now automatically tag the available interface
  200. types in an event.
  201. - [New] The platform value sent with an event is now recorded in the database.
  202. - [New] A recover account flow has been added.
  203. - [New] There is now a sticky nav on the event details pages.
  204. - [New] getting started page now shows if there's no data for a project.
  205. - [New] An API key management page now exists (under project settings).
  206. - [New] A tag overview page now exists for group details pages.
  207. - [Fix] Line numbers now show correctly in collapsed source context.
  208. - [Fix] Pending members now show correctly on the team management page (under project settings).
  209. - [Fix] The time since value now updates correctly when events change.
  210. - Various changes to how event details components render.
  211. - Various fixes for breadcrumbs and header styles.
  212. - Most plugins will no longer default to enabled on new projects.
  213. Version 5.1.0
  214. -------------
  215. Minor point releases now signify major changes (5.1.0 is a major release). Bugfix and smaller
  216. releases will continue as normal.
  217. This release includes a very large set of changes from 5.0.0, including a new client protocol
  218. and an overhaul to the frontend code (specifically the JavaScript).
  219. If you're a contributor, take note that there is now a JavaScript test suite. You can run all
  220. test suites with the ``make test`` command.
  221. Protocol Version 3
  222. ==================
  223. Sentry 5.1 removes support for version 1.0 of the protocol, and maintains a compatibility layer
  224. for version 2.0.
  225. Additionally, the following changes apply to the new protocol:
  226. - sentry_version should be sent as '3' (not 3.0).
  227. - Signed messages are no longer supported (signatures are not calculated).
  228. - sentry_signature is no longer used.
  229. - sentry_timestamp is no longer used.
  230. - Clients must pass sentry_secret for server-side requests as part of the auth
  231. header. This check runs in the event that there is no Origin header sent.
  232. - version 2.0 supports validation of this, version 3 requires it.
  233. - The ``project`` attribute in the JSON packet is no longer required.
  234. - The ``platform`` attribute is now recommended.
  235. - The ``tags`` attribute is now recommended.
  236. Other Changes
  237. =============
  238. - Aggregation 'Views' have been removed.
  239. - All streaming components are now powered by Backbone.js.
  240. - Frontend has been updated to Bootstrap 2.1.
  241. - The event stream now includes sparklines representing the last 24 hours of data for each event.
  242. - Trends have greatly improved.
  243. - Grouping events that have identical stacktraces other than the function name (e.g. dynamically generated
  244. functions) is not possible.
  245. - SiteFilter has been removed, as has the sites plugin.
  246. - If frames are included in a stacktrace that have the attribute ``in_app: false``, they will be hidden by default in
  247. the details view.
  248. - crossdomain.xml support is now available (see documentation).
  249. - The search feature now uses buffers to better handle write concurrency.
  250. - Early support for WSGI (should be functional) exists as ``sentry.wsgi``.
  251. - Many fixes around cache usage.
  252. Version 5.0.0
  253. -------------
  254. - Variable versions of Django are no longer supported. Django 1.4.x must now be used.
  255. - Public projects are restricted to viewing without being authenticated.
  256. - The default behavior of Sentry is to now use timezone-aware datetimes everywhere.
  257. - Permissions have been refactored to be more precise.
  258. Version 4.10.0
  259. --------------
  260. - A new IssuePlugin base is available.
  261. - Charts have been refactored to show 7 days worth of data.
  262. - django.contrib.staticfiles is now supported.
  263. - django.contrib.messages is now supported.
  264. Version 4.9.0
  265. -------------
  266. Social authentication is now supported!
  267. By configuring several options (documented on the quickstart guide), you can allow users to signup and login
  268. with accounts from several social services. Additionally users can associate their existing accounts (via a
  269. new identities panel in their account settings) with any number of these services.
  270. Currently, the following services are supported:
  271. * GitHub
  272. * Twitter
  273. * Facebook
  274. * Google
  275. Version 4.8.0
  276. -------------
  277. Tags are now able to be created dynamically! See the documentation for more details on implementing it inside
  278. of your client.
  279. You can also configure which tags will show up as filters in the sidebar via your project's settings page. By
  280. default all tags will show up.
  281. Version 4.7.0
  282. -------------
  283. User options are now available to plugins. The builtin mail plugin also now takes advantage of them.
  284. - sentry_mail will now use the alert_email option over your account email if specified.
  285. - sentry_mail now allows you to choose which projects to receive alerts for.
  286. - Numeric slugs will no longer return 404s.
  287. - Corrected the repair command with the --owner argument.
  288. Version 4.6.0
  289. -------------
  290. Improvements to the dashboard are trickling in, with this update including:
  291. - Changing "Top Events" to "Trends" (if supported by your RDBMS)
  292. - Time interval selections for both widgets
  293. Plugins now have a new interface for registering themselves. Please see the developer documentation
  294. for notes on how to use ``entry_points``.
  295. Additionally:
  296. - Signed messages are now deprecated. Save yourself some CPU cycles, and rely on SSL.
  297. - A new plugin which tags user's email addresses.
  298. - Several UI cleanups in various areas, such as improvements to the account dropdown and lists of projects/teams.
  299. - Long awaited cleanup/fixes for applying the initial database migrations (sorry MySQL users).
  300. - Initial support for arbitrary event tagging (coming soon to a client near you).
  301. Version 4.5.0
  302. -------------
  303. Builtin plugins have been refactored to be more concise. This includes changes to the
  304. servers, urls, and sites plugins. There is also a new builtin plugin::
  305. sentry.plugins.sentry_useragents
  306. With these changes, it now makes it even easier to create a basic plugin that just handles extra
  307. "tag"-like data. Take a look at one of the aforementioned plugins for an example.
  308. Additionally:
  309. - The mail plugin now sends additional Sentry-specific headers.
  310. - Signatures are deprecated, and no longer required.
  311. - Several fixes regarding CORS support.
  312. Version 4.4.0
  313. -------------
  314. Two new columns were added to the ``Group`` model:
  315. - ``resolved_at``: The datetime at which this event was marked as resolved.
  316. - ``active_at``: The datetime at which this event was marked as open.
  317. The dashboard's "New Events" will now use the active_at date rather than the original
  318. first seen date on an event.
  319. Version 4.3.0
  320. -------------
  321. A new global dashboard now exists. The dashboard contains an event graph for all projects which
  322. you have access to, as well as a list of the top events, and new events.
  323. Additionally:
  324. - API endpoints now properly send no-cache headers.
  325. - Added a countdown to update buffers.
  326. Version 4.2.0
  327. -------------
  328. Sentry now has support for buffering a majority of its counters via Redis. For more information, check
  329. the buffer section of the configuration documentation.
  330. - Nearly all race conditions are now handled correctly using distributed cache locks.
  331. Version 4.1.0
  332. -------------
  333. Sentry now maintains full support for CORS requests from external hosts. This means that clients like
  334. raven-js will now able to securely send messages to Sentry, without compromising their secret key.
  335. In addition:
  336. - Trusted domains were removed. These were not fully implemented.
  337. - A new datepicker for selecting ranges of events.
  338. - raven-javascript and raven-ruby are now officially supported clients.
  339. - Added ``sentry repair``.
  340. Version 4.0.0
  341. -------------
  342. Introducing Teams!
  343. Projects are now assigned to a single team, and that team may consist of many members. Additionally
  344. each team may own multiple projects. This makes it much easier to handle permissions across a single
  345. organization that has many projects.
  346. This update also includes initial changes to how filters work. ServerName Filter and SiteFilter are
  347. no longer specified in the ``FILTERS`` setting, but instead are included automatically if you
  348. load the respective ``sentry_servers`` and ``sentry_sites`` plugins.
  349. Additional changes:
  350. - Legacy data format is no longer supported (pre-Raven 1.x)
  351. - API will now validate data before sending it into the queue, enabling better debugging for clients.
  352. Version 3.8.0
  353. -------------
  354. Plugins are now configurable per-project. This makes it easy to install a plugin globally
  355. and allow it to run only on selective projects.
  356. Version 3.7.0
  357. -------------
  358. Several minor fixes, as well as a backwards incompatible change with filters.
  359. All filters must now accept the project argument in the initializer. The signature is
  360. now __init__(request, project).
  361. Version 3.6.0
  362. -------------
  363. This version focuses on improving membership control. It includes the ability to revoke
  364. project members access temporarily (by suspending them), as well as revoking users
  365. (outside of Sentry) via the user.is_active flag.
  366. Additionally, it brings the beginnings of an "invite user" flow, allowing you to
  367. invite users who may or may not already have accounts in the system. We plan to improve
  368. this flow in an upcoming release to allow invitees easy registration within the system
  369. if they don't already have an account.
  370. Version 3.5.0
  371. -------------
  372. Several improvements and additions have been made around the administration, including
  373. performance improvements.
  374. If you're utilizing the queue, the installation guide now recommends you switch off the
  375. database backend, and move to something more efficient (such as Redis).
  376. Version 3.4.0
  377. -------------
  378. Eventlet is no longer used as the default worker for gunicorn, and thus is no longer
  379. installed by default. If you're using the udp worker, or ``send_fake_data`` you MUST
  380. install eventlet yourself. The recommended worker class for gunicorn is now ``gevent``
  381. as it corrects some issues with async queries in psycopg2.
  382. Version 3.3.0
  383. -------------
  384. The queue has been changed from direct Kombu, to utilizing Celery entirely. If you were
  385. already using the queue, the upgrade simply requires you to change "sentry start worker"
  386. to "sentry celeryd".
  387. Version 3.0.0
  388. -------------
  389. Version 3 of Sentry is centered around a restructure of the internal services and
  390. the architecture for running those. It also includes improvements to the plugin architecture.
  391. The upgrade process should be trivial, just be aware that if you were using --config before
  392. you must change the way you pass it so that it's before the subcommand. For example
  393. if you were doing ``sentry start --config...`` the command would now be changed to
  394. ``sentry --config... start``.
  395. * Sentry no longer provides the ability to daemonize processes. This should now be
  396. done at the system level.
  397. * All of Sentry's CLI is now handled through Logan (https://github.com/dcramer/logan),
  398. which simply pipes commands to Django's internal system utilizing custom configuration.
  399. * Plugins now have a hook for managing some level of permissions (beyond the required defaults).
  400. * The plugin interface (IPlugin) is now documented.
  401. * It is now recommended that clients allow the Sentry server to compute checksums.
  402. Version 2.9.0
  403. -------------
  404. * Plugins must now behave as singletons and be registered with a newly provided
  405. sentry.plugins.@register decorator.
  406. * The Bugzilla and Redmine extensions are no longer part of Sentry core.
  407. * Added a global overview of projects to the administration.
  408. Version 2.8.0
  409. -------------
  410. * Added an Account Settings panel which allows users to change their name,
  411. email, and password.
  412. * The default Sentry server now correctly wraps itself in its own middleware.
  413. * Improved Real-time JavaScript.
  414. Version 2.7.0
  415. -------------
  416. * Added first_seen and last_seen to all message filter values.
  417. * Added a new "since" option to the dashboard with a default value of 3 days.
  418. Version 2.6.0
  419. -------------
  420. * The built-in webserver is now powered by gunicorn.
  421. * Cleaned up several admin pages and split them into sub-pages.
  422. Version 2.5.0
  423. -------------
  424. * Corrected some queue behavior.
  425. * Resolve Feed now only resolves items active within current filters.
  426. * Handle unicode characters in POST body for replay request.
  427. * Ensure client side requests run checks on HTTP_REFERER
  428. * Adjust documentation for service settings.
  429. Version 2.4.5
  430. -------------
  431. * Corrected indexing behavior to handle non strings.
  432. * If queuing is enabled the indexer will now queue it's jobs.
  433. * Moved group creation into a transaction.
  434. Version 2.4.4
  435. -------------
  436. * Mail configuration value of send_to now correctly uses ',' as a separator
  437. (rather than ';').
  438. * Changed rendering of sidebar widgets for all builtin extensions.
  439. * Added an event details slot to the sidebar pane for individual events.
  440. Version 2.4.3
  441. -------------
  442. * Correct some behavior with MySQL on the groups pane.
  443. * Correct generated configuration behavior to use absolute
  444. paths for run and log folders.
  445. Version 2.4.2
  446. -------------
  447. * Include DSN and member type on projects list grid.
  448. Version 2.4.1
  449. -------------
  450. * Change appearance of resolve states.
  451. * Adjust user management to link username (which is required) and not
  452. optional fields.
  453. Version 2.4.0
  454. -------------
  455. * Added user management for admins.
  456. * Resolved events should now appear differently.
  457. * Default membership access is now configurable.
  458. Version 2.3.2
  459. -------------
  460. * Maintaining *some* level of support for SQLite.
  461. Version 2.3.1
  462. -------------
  463. * Correct rendering of sites, urls, and servers on details panes.
  464. Version 2.3.0
  465. -------------
  466. * The polling API and JavaScript have been refactored.
  467. Events now stream in (they generally do not update if they already
  468. exist), and will maintain correct ordering in the feed.
  469. This API is available for most sort options, excluding trends.
  470. * The builtin plugin's widgets have been fixed.
  471. * Sampling rates are now configurable.
  472. * Some minor design tweaks.
  473. Version 2.2.5
  474. -------------
  475. * The |date filter now forces things to UTC (it assumes local time).
  476. * Event templates have been updated to resemble groups.
  477. Version 2.2.4
  478. -------------
  479. * Improve error logging in API.
  480. * Update Celery client code to use new send_encoded interfaces.
  481. * Change JS datetimes to use UTC.
  482. * Force clients which specify version 2.0 or newer to pass identification.
  483. * Better default logging configuration.
  484. * Adjust eventlet to monkey patch the world before any imports happen.
  485. * Adjust default configuration to specify LOG and RUN directories.
  486. * upgrade now correctly handles the delete ghosts argument.
  487. Version 2.2.3
  488. -------------
  489. * Lower font size of counts on event list.
  490. * Align actions to right side (vertical).
  491. * Fix issue with long filters not transforming to selects.
  492. Version 2.2.2
  493. -------------
  494. * Corrected event_id key to contain (project_id, event_id).
  495. * Adjusted project form to default the user to the current user
  496. when accessed by an admin.
  497. * Change sentry admin to be /manage/ to avoid any unintentional
  498. conflict with the Django admin.
  499. Version 2.2.1
  500. -------------
  501. * Cleaned up several pages.
  502. Version 2.2.0
  503. -------------
  504. * Sentry has a brand new design utilizing Bootstrap 2.
  505. * Superusers can now create projects for users.
  506. Version 2.1.3
  507. -------------
  508. * Ensure we truncate tokens to 128 characters for SearchDocument.
  509. * Gracefully handle errors with indexing.
  510. * Gracefully handle errors with post_process.
  511. * Gracefully handle errors with regression_signal.
  512. * Fixed priority sort option not activating.
  513. Version 2.1.2
  514. -------------
  515. * Fixed an issue that was causing signals to not be registered.
  516. * Made date the default sort order for aggregate stream.
  517. Version 2.1.1
  518. -------------
  519. * Fixed an issue with indexing pre and post context on templates.
  520. Version 2.1.0
  521. -------------
  522. * ``pytz`` is now a requirement.
  523. * Changed default TIME_ZONE to be "UTC".
  524. * Corrected some issues around how dates were localized.
  525. * Initial implementation of full-text search.
  526. * Fixed sending of regression_signal so it only happens if event
  527. has been marked as new.
  528. * Changed ProjectMember.get_dsn() to use request.get_host() which
  529. corrects a bug in some webservers.
  530. Version 2.0.2
  531. -------------
  532. * ``start`` no longer performs ``upgrade`` as its problematic.
  533. * Initial queue usage (optional).
  534. * Fix reference to bookmark_querystring.
  535. * Added DSN to project member details page.
  536. Version 2.0.1
  537. -------------
  538. * Skip logging of south in default server configuration as it proves to be problematic.
  539. * Remove use of deprecated logging handler in default server configuration.
  540. * Run ``upgrade`` as part of ``start``.
  541. * Fix GroupBookmark related_name to be sentry namespaced.
  542. * Correctly handle before_events() hook in polling responses.
  543. * Removed integrated install documentation as it is no longer officially supported.
  544. * Gracefully handle rendering errors with interfaces.
  545. * Correct a bug with default email options.
  546. Version 2.0
  547. -----------
  548. Sentry 2.0 is a major release which contains many new features as well as some large
  549. rearchitecting of the codebase.
  550. If you were previously extending Sentry, it would be wise
  551. to test your extensions before upgrading.
  552. * Added project scoping to all data in sentry.
  553. * Added permissions to projects.
  554. * The authorization header is now X-Sentry-Auth to avoid certain default behaviors such as
  555. mod_wsgi's "don't pass HTTP Authorization header".
  556. * sentry.client has been removed
  557. * The default key is now base64-encoded.
  558. * sentry.interfaces are now used for coercing and rendering structured data.
  559. * The store endpoint has a new API.
  560. * The from_kwargs method has a new API.
  561. * The ``class_name``, ``traceback``, an ``url`` fields have been removed.
  562. * GroupedMessage was renamed to Group.
  563. * Message was renamed to Event.
  564. * Switched to Bootstrap framework.
  565. * Added "Replay Request" action for events.
  566. * Graphs can now be generated for Projects.
  567. * There is now a trends sort option for aggregated events.
  568. * Added ``sentry manage`` command.
  569. * Sentry now has its own isolated queues (using Kombu).
  570. Version 1.13.5
  571. --------------
  572. * Level filters are now precise (they no longer show their level + messages from higher levels).
  573. Version 1.13.4
  574. --------------
  575. * Updated message details page to resemble look and feel of group details.
  576. Version 1.13.3
  577. --------------
  578. * Added back in the "raw traceback" view.
  579. Version 1.13.2
  580. --------------
  581. * Counts will now render differently with large values (e.g. 13000 will now be 13k)
  582. Version 1.13.1
  583. --------------
  584. * Search by message_id will now display a list of results if there are multiple matches.
  585. Version 1.13.0
  586. --------------
  587. * Deprecated the Sentry client, and added Raven to the as the default builtin.
  588. * Removed Highstock and replaced it with an awesome OPEN SOURCE alternative, jQuery Flot.
  589. * Default Sentry server options should now work out of the box.
  590. * Packaged Google Web Font as part of Sentry.
  591. Version 1.12.2
  592. --------------
  593. * Fixed infinite loop.
  594. Version 1.12.1
  595. --------------
  596. * Stabilize migration schema (solves problem with index creation fail introduced in 1.12.0).
  597. Version 1.12.0
  598. --------------
  599. * Adjusted message_id to include the checksum to avoid situations were the message_id
  600. that was generated did not exist due to sampling.
  601. Version 1.11.4
  602. --------------
  603. * Several design improvements for group/message details panes.
  604. Version 1.11.3
  605. --------------
  606. * Fixed a bug that was causing exception summary to not show.
  607. Version 1.11.2
  608. --------------
  609. * Cleaned up message and group details pages (adding back some missing information).
  610. * Cleaned up some design around odd margins/padding.
  611. Version 1.11.1
  612. --------------
  613. * Fixed a bug that would cause the admin (and potentially other modules) to get loaded multiple times.
  614. Version 1.11.0
  615. --------------
  616. * Added license headers.
  617. * Removed ``sentry.helpers`` and ``sentry.routers``.
  618. * Global module versions are now cached to avoid continuous path walking and
  619. import overhead.
  620. Version 1.10.1
  621. --------------
  622. * Fixed an issue that was causing servers to show logger names.
  623. Version 1.10.0
  624. --------------
  625. * You can now pass ``extra={'stack': True}`` to logging methods to capture
  626. the current frames and their locals.
  627. * Code refactoring in various places related to stack extraction.
  628. * Denormalized graph data in MessageCountByMinute (stores at 5m intervals).
  629. * Denormalized filter counts into MessageFilterValue
  630. * Added message sampling (adapted from Yuri Baburov's patch).
  631. * Added SENTRY_MAIL_LEVEL setting.
  632. * Added SENTRY_MAIL_INCLUDE_LOGGERS setting.
  633. * Added SENTRY_MAIL_EXCLUDE_LOGGERS setting.
  634. * Added the ``level`` argument to the cleanup command.
  635. * The thrashed key is now set correctly in request.sentry.
  636. * Added user information to all messages that have ``request``.
  637. * Changed the hashing function for messages that include
  638. stacktraces to ignore the ``message`` and line numbers.
  639. * Much improved test coverage.
  640. Version 1.9.0
  641. -------------
  642. * Load the Frequency chart asynchronously.
  643. * Frequency chart no longer shows for SQLite.
  644. * Switch graphing library to Highstock from Highcharts.
  645. Version 1.8.10
  646. --------------
  647. * Ensure dictionary keys are coerced to strings.
  648. * Fixed path to missing_permissions.html.
  649. Version 1.8.9
  650. -------------
  651. * Safely handle unpickling objects that may not have been stored in a
  652. valid format.
  653. Version 1.8.8
  654. -------------
  655. * Changed ``sentry cleanup`` to use a range query.
  656. Version 1.8.7
  657. -------------
  658. * Added "Clear Feed" option.
  659. * Version information will be read from pkg_resources if possible.
  660. * Cleared up documentation on configuration settings..
  661. * Performance improvements to ``Client.send()``.
  662. * Added default 404/500 pages.
  663. * Added support for Django's LOGIN_URL setting.
  664. * Fixed a memory leak in the client (thanks to Ben Bangert).
  665. Version 1.8.6.2
  666. ---------------
  667. * Reverted change which required distribute.
  668. * Cleaned up configuration defaults.
  669. Version 1.8.6.1
  670. ---------------
  671. * Include distribute_setup.py in the MANIFEST to ship it in sdists.
  672. Version 1.8.6
  673. -------------
  674. * Corrected an issue which was causing certain settings (like WEB_HOST) to
  675. not take affect in custom configuration files.
  676. * The Sentry server will now pull in default server settings, as well as
  677. ~/.sentry/sentry.conf.py if --config is not passed to it.
  678. Version 1.8.5.1
  679. ---------------
  680. * Fixed a bug which caused thrashing prevention to not function correctly.
  681. * Corrected an error in transform()'s recursion safety.
  682. * Changed packaging to use Distribute.
  683. Version 1.8.5
  684. -------------
  685. * Pulled test suite out of the Sentry namespace to avoid conflicts in projects.
  686. Version 1.8.4.2
  687. ---------------
  688. * Added missing invalid_message_id template.
  689. Version 1.8.4.1
  690. ---------------
  691. * Fixed an error that was causing LOG_LEVELS to not display correctly.
  692. Version 1.8.4
  693. -------------
  694. * The Sentry base client will now pass along the timestamp from when the
  695. message was generated.
  696. Version 1.8.3.1
  697. ---------------
  698. * Fixed a case where the client may hit a transaction aborted error when
  699. transforming variables.
  700. Version 1.8.3
  701. -------------
  702. * Added several settings which were Django specific so that they can be
  703. configured isolated to the Sentry instance.
  704. * Graceful failover for when a cache backend isnt working properly and
  705. throttling is enabled.
  706. * Better rendering of non-dict variables when passed within extra data.
  707. * Graceful failover for searching on message_id's that aren't found.
  708. Version 1.8.0
  709. -------------
  710. * Refactored Sentry server to run standalone (sentry --help).
  711. Version 1.7.5
  712. -------------
  713. * Implemented new client/server storage API and signing methods.
  714. * Fixed a bug where accessing __sentry__ would sometimes cause errors on
  715. certain code paths.
  716. Version 1.7.4
  717. -------------
  718. * Fixed a bug with potential recursion issues.
  719. * Fixed a bug with the storage API and unicode keys.
  720. Version 1.7.3
  721. -------------
  722. * Storage API has better responses when data fails to decode, or
  723. you send a bad request.
  724. * Documentation improvements for JSON storage API.
  725. Version 1.7.2
  726. -------------
  727. * All strings, lists, tuples, and sets are now shortened before sending
  728. to the server. Iterable data structures are truncated to the first
  729. 50 items, and strings are truncated to the first 200 characters.
  730. Both shorteners have configurable values in the settings.
  731. Version 1.7.1
  732. -------------
  733. * Fixed a bug that slipped through with blocktrans usage.
  734. Version 1.7.0
  735. -------------
  736. * Added ``score`` to ``GroupedMessage`` (schema change).
  737. * Added ``MessageIndex`` (schema change).
  738. * Added Async client (thanks to Yuri Baburov).
  739. * Added support for raw_post_data (thanks to Matthew Schinckel).
  740. * django-paging and django-indexer no longer need to be in INSTALLED_APPS.
  741. * Added an index for GroupedMessages.times_seen.
  742. * The ``score`` column will update atomically in PostgreSQL and MySQL.
  743. * Added the frequency sort option.
  744. * Better internationalization support.
  745. * Fixed a bug with Oracle's date truncation support (changed to hh24).
  746. * Respect TIME_ZONE by using auto_now_* on DateTimeField's.
  747. * Tests required Haystack and Celery are now skipped if module is not found.
  748. Version 1.6.10
  749. --------------
  750. * Added JSON support to storage API.
  751. * Changed default client to use JSON format.
  752. Version 1.6.9.1
  753. ---------------
  754. * Fixed an issue with encoding to UTF-8 for Haystack.
  755. Version 1.6.9
  756. -------------
  757. * Added URLs to default search parameters.
  758. * Fixed a bug to ensure template information is only added if its the correct loader
  759. Version 1.6.8.1
  760. ---------------
  761. * Search will now show when unauthenticated (e.g. when SENTRY_PUBLIC is enabled)
  762. Version 1.6.8
  763. -------------
  764. * Search no longer allows filters.
  765. * Search no longer allows arbitrary queries without Haystack.
  766. * Added logger, level, site, server, and url to search index.
  767. * Haystack has been updated for further flexibility.
  768. * SearchFilter is now unused (you should update your configs).
  769. Version 1.6.7
  770. -------------
  771. * Moved static media into /static/.
  772. * Added serve_static view to handle static media solely within Sentry.
  773. * Added SENTRY_STATIC_URL_PREFIX setting.
  774. Version 1.6.6
  775. -------------
  776. * setup.py install will no longer install example_project.
  777. * Fixed an issue where __sentry__ would be called even if it wasn't a callable.
  778. * Fixed an issue where transactions would attempt a rollback when not managed while creating
  779. the sort index.
  780. Version 1.8.8
  781. -------------
  782. * Set a last_message_id so when thrashing is hit there is still a point of reference for tracing.
  783. * Check correct permissions for Sentry.
  784. Version 1.6.4
  785. -------------
  786. * Fixed a memory leak due to TextNode's being created from leading whitespace in realtime packets.
  787. Version 1.6.3
  788. -------------
  789. * Fixed a critical bug in the Sentry JS namespace preventing it from loading.
  790. Version 1.6.2
  791. -------------
  792. * LogHandler will attempt to pick up the request automatically using SentryLogMiddleware.
  793. * Updated AJAX CSRF support for Django 1.2.5.
  794. * request.sentry is now set in any event which has request as part of the parameters.
  795. Version 1.6.0
  796. -------------
  797. * Added message references (uuid's) as message_id in Message
  798. * Fixed css compatibility issues with TextWidget
  799. * SearchFilter now allows searching by message reference id
  800. * Added Sentry404CatchMiddleware
  801. * Added SentryResponseErrorIdMiddleware
  802. * The `request` argument can now be passed into any ``create_from_`` method.
  803. (History beyond 1.6.0 is not present)