release-notes-3.10.0.txt 164 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640
  1. Hue v3.10.0, released May 11th 2016
  2. ===================================
  3. Hue, http://gethue.com, is an open source Web UI for easily doing Big Data analysis with Hadoop.
  4. Its main features:
  5. * SQL editors for Hive, Impala, MySQL, Oracle, PostGresl, SparkSQL, Solr SQL, Phoenix...
  6. * Dynamic Search dashboards with Solr
  7. * Spark and Hadoop notebooks
  8. * Scheduling of jobs and workflows through an Oozie Editor and Dashboard
  9. More user and developer documentation is available at http://gethue.com.
  10. Latest Notable Features
  11. -----------------------
  12. The complete list and video demos are on link:http://gethue.com/hue-3-10-with-its-new-sql-editor-is-out/[http://gethue.com/hue-3-10-with-its-new-sql-editor-is-out/].
  13. SQL Editor
  14. * Full revamped
  15. * Support of any type of SQL
  16. * Query: Multi queries, Search and Replace, live history, fold, format, table assist
  17. * Results: Fixed headers, scroll to columns, charting, download in Excel/CSV
  18. * Autocomplete of nested types
  19. * Saved default Configurations
  20. SQL Browser
  21. * Revamped UI for speed, statistics display and ease of use
  22. * Single page app
  23. * Optimized for large number of databases and tables
  24. Home
  25. * Folder and directories
  26. * Share document for collaboration
  27. * Export and import documents
  28. Search
  29. * Hue supports Solr Suggesters and makes your data easier to search! Suggester assists the user by proposing an auto-completable list of queries:
  30. * Result in the Grid Widget can be plotted like in the SQL editor. This is ideal for clicking visualizing the rows returned by the search query.
  31. Security
  32. * Solr Sentry privilege edition
  33. * A timeout now logs out inactive user after idle_session_timeout seconds
  34. * Optional custom security splash screen at log-in with login_splash_html
  35. * TLS certificate chain support for HUE
  36. * SAML Password for the key_file was introduced with key_file_password
  37. * Customize your xmlsec1 binary by changing xmlsec_binary
  38. * Customize your SAML username mapping. It also supports syncing groups on login
  39. Oozie
  40. * External Workflow Graph: This feature enables us to see the graph for workflows submitted form File-browser as well as the ones submitted from CLI.
  41. * Dryrun Oozie job: The dryrun option tests running a workflow/coordinator/bundle job with given properties and does not create the job.
  42. * Timezone improvements: All the times on the dashboard are now defaulted to browser timezone and submitting a coordinator/bundle no longer need UTC times.
  43. * Emailing automatically on failure: Each kill node now embeds an optional email action. Edit a kill node to insert a custom message if case it gets called.
  44. Compatibility
  45. -------------
  46. Runs on CentOS versions 5 to 6, Red Hat Enterprise Linux (RHEL 5 and 6), and Ubuntu 10.04, 12.04 and 14.04.
  47. Tested with CDH5. Specifically:
  48. - Hadoop 2.6.0
  49. - Hive 1.1
  50. - Oozie 4.1
  51. - HBase 1.2
  52. - Pig 0.12
  53. - Impala 2.5
  54. - Solr 4.10
  55. - Sqoop2 1.99.5
  56. - Spark 1.6
  57. These minimum versions should work (not tested):
  58. - Hadoop 0.20 / 1.2.0 / 2.0.0
  59. - Hive 0.12.0
  60. - Oozie 3.2
  61. - HBase 0.92
  62. - Pig 0.8
  63. - Impala 1.0
  64. - Solr 3.6
  65. - Sqoop2 1.99.3
  66. - Spark 1.4
  67. Supported Browsers:
  68. Hue works with the two most recent versions of the following browsers. Make sure cookies and JavaScript are turned on for the browser.
  69. * Chrome
  70. * Firefox LTS
  71. * Safari (not supported on Windows)
  72. * Internet Explorer
  73. Hue might work with Chrome 23, Firefox 23, IE8, Safari 6, or older browser version, but you might not be able to use all of the features.
  74. Runs with Python 2.6.5+
  75. Note: CentOS 5 and RHEL 5 requires EPEL python 2.6 package.
  76. List of 2378 Commits
  77. --------------------
  78. * 94b494a HUE-3858 [editor] Js error on very first opening of the editor
  79. * 4aee5e7 HUE-3803 [hive] Support unicode in queries
  80. * 528d38a HUE-3852 [core] Configuration API returns duplicate group entries when saving one configuration set with multiple groups
  81. * 6f31373 HUE-3861 [core] Upgrade Django Axes to 1.5
  82. * 4874322 HUE-3855 [search] Slightly reorganize the icons by group
  83. * 3dac1a2 HUE-3861 [core] Upgrade Django Axes to include fix for AXES_LOCK_OUT_BY_COMBINATION_USER_AND_IP (#368)
  84. * ad0b9ba HUE-3802 [oozie] Fix HS2 action on SSL enabled cluster
  85. * 2ab8a93 HUE-3847 [core] Fix unhashable type error in oozie test
  86. * 4b47d4d HUE-3834 [editor] Configuration type HDFS path list throws js error
  87. * 56af275 HUE-3823 [editor] Deleting a query from the list of query page says "notebook"
  88. * 24d0651 HUE-3835 [editor] Implement the boolean config type
  89. * 9c1b722 HUE-3851 [core] Support many-to-many for group configurations
  90. * 2c2c874 HUE-3850 [core] App configuration page fails to load with JS error
  91. * 44ee60a HUE-3843 [editor] Log panel does not auto scroll to the bottom when new logs arrive
  92. * 5a237ac HUE-3820 [editor] Click on a result row to highlight sticks on first row id cell
  93. * f584cd5 HUE-3772 [editor] Browsing running queries might double the results
  94. * c8aea57 HUE-3707 [editor] Enabled search for the saved queries too
  95. * a9d30da HUE-3847 [core] Fix oozie test to work with updated config API
  96. * ffe39ab HUE-3847 [core] Update query logic for filtering groups
  97. * b9cffb8 HUE-3821 [pig] Logs are never returned on running script
  98. * 6efc737 HUE-3847 [core] Enable multi-group selection for saved group configurations
  99. * 9aabcbe HUE-3846 [sentry] Send * instead of ALL until Solr Sentry supports it
  100. * b7b9d1d HUE-3844 [sentry] Solr config privilege action should be ALL not QUERY
  101. * 0d64b08 HUE-3762 [editor] Improve logic showing if it is a query history query
  102. * a2112a0 HUE-3814 [editor] Disable history / saved query links if we are already on the same queries
  103. * 0b45a14 HUE-3841 [editor] Reset the progress status of a saved query
  104. * 426a8b8 HUE-3840 [jb] Add debug info in possible 500 when pulling job conf from YARN
  105. * c1e54ae HUE-3839 [sentry] Enabled Solr privilege section
  106. * c04fe12 HUE-3805 [oozie] Add support for oozie schema 0.4 in dashboard graph for external workflows
  107. * 473196c HUE-3232 [Infra] run jasmine tests on build
  108. * 8e25f49 HUE-3808 [core] Do not trigger any call on initialization
  109. * 6515358 HUE-3824 [editor] D&d table for a select adds an extra space before the statement
  110. * 24b4da1 HUE-3832 [assist] Dragging a column shows the table context menu on editor drop
  111. * dcda860 HUE-3826 [assist] Expanding column click can be flaky
  112. * a85c77a HUE-3819 [fb] Make the upload and create icons not disappear under 1180px
  113. * 3aa5772 HUE-3810 [editor] Clicking on name of graph legend could check its box
  114. * c068d18 HUE-3827 [libsentry] Workaround Hive for THRIFT-3388 hash doesn't work on set/list
  115. * 2a352a9 HUE-3801 [editor] Move user perms to get document API
  116. * da2ef3e HUE-3663 [editor] RDBMS types should return serializable format for result data
  117. * a50c369 HUE-3808 [core] Offer to live turn on/off debug level
  118. * 905a48c HUE-3801 [editor] Do not offer save button to query shared as read only
  119. * 7346e2f HUE-3776 [core] Install jobs and pig examples under examples directory
  120. * 7f9be09 HUE-3763 [editor] Change test to work with the new history statement
  121. * c540f42 HUE-2962 [core] Adjust to updated API
  122. * f1d0537 [core] Add defaultValue to properties
  123. * 075e8c8 HUE-2962 [core] Implement saving of default and group configurations
  124. * d47dcf6 HUE-2962 [core] Add templates for listing and editing configuration
  125. * fa5406b HUE-2962 [core] List the app configurations under user management
  126. * 9140f67 HUE-3770 [home] Add empty trash action on trash right-click
  127. * c776678 HUE-3774 [home] Expect the search field to gain focus when clicking on search
  128. * 22fabd2 HUE-3777 [home] Do not present search term as a breadcrumb
  129. * 01288c4 HUE-3778 [home] Upload and download icons should be on the same line
  130. * a573326 HUE-3781 [home] Drag and drop a document into the assist database list gives a maximum call stack JS error
  131. * 4ff3ec1 HUE-3818 [home] IE 10 breaks the document entries into two lines
  132. * e94b7ea HUE-3787 [editor] Switch to shift+click only to open table in metastore and expand * for increased linux support
  133. * d1b254b HUE-3804 [beeswax] Drop dependency on notebook.ko.js
  134. * 6907d67 HUE-3789 [editor] No cross icon to exit full screen mode
  135. * 81043be HUE-3798 [core] Re-login from auto-login popup should refresh the page if login as another user
  136. * 294858f HUE-3775 [search] Twitter example has js errors
  137. * 499eee1 HUE-3794 [editor] Click on a result row to highlight
  138. * 91328eb HUE-3790 [editor] Disable format query when query is too big
  139. * 99078ce HUE-3801 [editor] Move user perms to get document API
  140. * cf85ac2 HUE-3763 [editor] Show only the statement which gets executed
  141. * fce7753 HUE-3815 [editor] Protect against failed calls when updating history status
  142. * c253882 HUE-3760 [editor] Canceling a query and doing an explain doesn’t hide the progress bar
  143. * 5797460 HUE-3812 [editor] Do not save the result data
  144. * 6cf3a6b HUE-3809 [editor] Do not send the full query history when executing a query
  145. * cd6a73b HUE-3807 [tools] Remove asciidoc.asciidoc doc file that might be flagged as GPL
  146. * 89ce94d HUE-3792 [editor] Schedule error when clicking on disabled button
  147. * efae667 HUE-3695 [editor] Last multi query highlighting is always missing last char
  148. * 46527e4 HUE-3779 [core] Exporting read only workflows generates empty hue-documents.json
  149. * c873186 HUE-3784 [editor] Query list page does not list shared queries, only owned ones
  150. * 7ffdca0 HUE-3800 [jb] Job attempt logs not appearing for some Oozie jobs
  151. * 065f3e5 HUE-3785 [core] Add sample user to default group to enable sharing perms
  152. * aed5be1 HUE-3197 [oozie] Decision node support in external Workflow graph
  153. * 00e11d8 HUE-3688 [oozie] Fix TestEditor.test_workflow_dependencies unit test
  154. * 3e29155 HUE-3757 [oozie] Better error messages when deleting read only document in editor
  155. * 09bff0c HUE-3758 [editor] Take scroll position into account when positioning context-menu
  156. * 76ff394 HUE-3759 [home] Unselect them all when clicking somewhere else on the page
  157. * f19a358 HUE-3771 [home] Hide the assist panel temporarily for 3.10
  158. * c0ce5b9 HUE-3755 [assist] Hide the source level when there is only one
  159. * 7d41cfd HUE-3773 [editor] The graph of a reloaded query doesn't render the first time
  160. * dfafd69 HUE-3761 [editor] Showing the logs should trigger refresh for table headers
  161. * d14e230 HUE-3767 [editor] The global settings demi modal has a too dark shadow
  162. * f91223f HUE-3754 [editor] Query history seems to lose whitespace in query statement with new lines
  163. * ac022bf HUE-2325 [core] Refactor config API and update README and tests
  164. * 2ea383e HUE-3750 [search] Samples do not show up in the sample folder
  165. * c0d6736 HUE-3700 [core] Support force_username_lowercase and ignore_username_case for all Auth backends
  166. * 58c0f45 HUE-3751 [metastore] Confusion when table name and database name are the same
  167. * 2aef38f HUE-3707 [editor] Add filter search for the query history
  168. * 1cff7c0 HUE-3741 [metastore] Display field validation errors on create table wizard
  169. * 177d780 HUE-3733 [editor] Scrolling on the saved query tab scroll on the result tab
  170. * 6fa23fc HUE-3734 [fb] Scrolling to the newly uploaded file
  171. * dba54bc HUE-3747 [doc2] Install Spark Notebook example to examples directory
  172. * 17d5181 HUE-3743 [editor] Support &new=true to have a blank query
  173. * 7bc2d84 HUE-3728 [editor] Create new query without a page refresh
  174. * 475c4d3 HUE-3660 [spark] Spark default properties are not all valid
  175. * ad1400b HUE-3749 [editor] Let the user pick which session properties to configure
  176. * 395c789 HUE-2962 [editor] Extract ko templates and components for configuration into separate mako
  177. * 4db69d9 HUE-3737 [metastore] All beeswax queries executed via metastore fails to redirect due to JS error
  178. * 596acfa HUE-3746 [metastore] Add browse link in the sample page if there is some data
  179. * 178a2e0 HUE-3741 [metastore] Display field validation errors on create table wizard
  180. * 3f5f0ad HUE-3736 [core] Fix flaky jasmine tests
  181. * 9ef4c52 HUE-3632 [editor] Create button on query list page is notebook only
  182. * c3f2fc7 HUE-3215 [editor] Live update also queries with available results
  183. * a26eec5 HUE-3723 [editor] Use larger input for notebook name and description
  184. * aba17c3 HUE-3724 [editor] The spinner for starting a new session should be really blue
  185. * 96dd3a5 HUE-3684 [home] New directory popup text box has scroll bars
  186. * 9ffd112 HUE-3732 [editor] Icons are misaligned in the snippet menu
  187. * 6cc8b7d HUE-3731 [editor] Send database on Impala refresh with invalidate
  188. * 3828ef3 HUE-3215 [editor] Add live moment for query history and hook up update status check
  189. * c3aef09 HUE-3726 [editor] On query error we hide the log icon of the snippet
  190. * e0e6645 HUE-3719 [editor] Do not error popup when search app is disabled
  191. * 7489f86 HUE-3725 [jb] 'SparkJob' object has no attribute 'amHostHttpAddress'
  192. * 9da3651 HUE-3697 [hive] Excel download convert decimal types to strings
  193. * 356524c HUE-3422 [editor] Rename parentUuid to parentSavedQueryUuid
  194. * 71acfe2 HUE-3422 [editor] Polishing the display of the workflows of a Hive query
  195. * fcfd2c0 HUE-3719 [editor] Editor should fail gracefully if search is disabled/blacklisted
  196. * 497df2c HUE-3720 [security] Allow to browse Solr observable hierarchies
  197. * c11b4fc HUE-3714 [editor] Canceling a query can print a none error
  198. * 4c52740 HUE-3717 [editor] Move row link of saved queries to the full row instead of just the name
  199. * 5af7945 HUE-3715 [editor] statements_count of query history not always consistent
  200. * b992b0e HUE-3215 [editor] Add a call to check the status of the queries in the history
  201. * 36cc7b6 HUE-3713 [editor] Open parent saved query without reloading the page
  202. * 8a3bec2 HUE-3703 [editor] Cleaner way to not reload the history on each query opening
  203. * 074c8d6 HUE-3709 [editor] Close the previous query correctly if needed
  204. * be49616 HUE-3709 [editor] Close queries and not the full sessions on page exit
  205. * 491a247 HUE-3690 [editor] Unify loading a saved query
  206. * 2590aed HUE-3689 [oozie] Drag & dropped Hive action should be sorted in reverse
  207. * 4fd2ca4 HUE-3687 [editor] Add dependency on workflow from a Hive document action
  208. * e80f618 HUE-3687 [editor] Add dependency on workflow from editor
  209. * b12a780 HUE-3422 [home] Save documents directly into a directory
  210. * a2b7a0b HUE-3679 [editor] 'unicode' object has no attribute 'is_superuser' when saving a query
  211. * 974ad25 HUE-3710 [notebook] Hide explain icon for non SQL snippets
  212. * 8141cc2 HUE-3712 [home] Fix js error when going back on home
  213. * 85fe154 HUE-3711 [home] Generate the new document link with the current path
  214. * 6b02353 HUE-3722 [core] Add basic jasmine tests for assistHelper and rename to apiHelper
  215. * 5f13846 HUE-3706 [search] Expanding a document should expand the field list too
  216. * 88d8820 HUE-3659 [home] Open folder automatically if there is only one
  217. * 842f852 HUE-3708 [editor] Name and description edit pop-overs are misaligned for long values
  218. * 8f993e6 HUE-3680 [editor] Limit the length of the name to 255 chars
  219. * a0e7700 HUE-3699 [home] Trigger click when dragging a small distance over links
  220. * 247788e HUE-3716 [core] Add gen-py paths to hue.pth
  221. * cc7db05 HUE-3697 [hive] Excel download convert decimal types to strings
  222. * 584fce4 HUE-3704 [core] Force enable notebook permissions
  223. * b96110a HUE-3703 [editor] Loading a saved query should not reload the full history
  224. * caa6e2b HUE-3701 [editor] Query history spinner when loading it the first time
  225. * 55d4b95 HUE-3691 [editor] Saved queries offer a false pagination
  226. * 0e5e48d HUE-3694 [editor] Multi query hightlighting disappears on focus
  227. * 97088c7 HUE-3692 [editor] 'Save as' a query does not update the saved query list
  228. * bc7e1fe HUE-3683 [editor] Hive pie chart graphing js error
  229. * 0f095a7 HUE-3675 [search] Align the marker map icon
  230. * b932158 HUE-3674 [core] Prevent idle of idle session timeout blurring
  231. * 2e7c6f5 HUE-3673 [editor] Elipsis for the name of the query in the Saved History
  232. * 9cfa11d HUE-3640 [editor] Zero result query always closes Query History tab
  233. * be034c8 HUE-3702 [editor] Suppress conf error if Impala is not enabled
  234. * 3599f78 Add csrf_token to Pig app template (#355)
  235. * e13e28a [doc2] Fix test_api_get_data test
  236. * db43f37 HUE-3681 [oozie] Fix submit coordinator in Oozie
  237. * 99d305b HUE-3662 [editor] Upgrade session properties when opening history or saved query
  238. * 0b4829c HUE-3678 [core] Replace illegal Excel characters on download
  239. * 6ef25fd HUE-3625 [editor] Saving a notebook resets its directory to Home
  240. * 0d3ac19 HUE-3672 [doc] Document password script for databases
  241. * 09c7074 HUE-3670 [jb] Summary button does not fail gracefully
  242. * aad59f5 HUE-3668 [sentry] Generify the authorizables
  243. * 54771d9 HUE-3667 [sentry] Support TListSentryPrivilegesByAuthRequest v2
  244. * 0a67b5c HUE-3667 [libsentry] Workaround in API for THRIFT-3388 hash error
  245. * a812c79 HUE-3667 [libsentry] Update thrift API to support SENTRY-993
  246. * a25471e HUE-3655 [oozie] Add ability to configure default config parameters that all Hue(Oozie) jobs contain
  247. * d7d3717 HUE-3671 [editor] Fix Save Parent Directory
  248. * cf9fd23 HUE-3649 [doc2] get_by_uuid should check permissions
  249. * 63dfd2a PR349 [doc] Add sasl-plain dependency for Centos 6.6
  250. * ca2dbd3 HUE-3591 [oozie] Autocomplete list of possible hive queries in the hive doc action
  251. * 7233d3a HUE-3652 [editor] Update Get History test to correctly check for the query type
  252. * fc63bdf HUE-3665 [editor] Don't show top border on query history columns
  253. * fc43dd9 HUE-3654 [editor] Ellipsis for the name of the query in Query History
  254. * 7b44854 HUE-3410 [notebook] Update tests to the use the saved parent id
  255. * 7c627c8 HUE-3263 [assist] Show menu on drop of db entries (select, update, insert, delete etc.)
  256. * c49aaf2 HUE-3657 [editor] DB drop-down has empty space with few DBs
  257. * 6bfe794 HUE-3656 [editor] Clicking explain removes the results tab
  258. * 799e194 HUE-3597 [assist] Allow copying names in assist
  259. * b2fd327 HUE-3510 [notebook] Restyle snippet icon shading and alignment
  260. * 24bfeb1 HUE-3602 [editor] Sample popup column header style conflicts a bit with rows
  261. * d406433 HUE-3410 [editor] Secure persisting the parent saved query
  262. * 43233c1 HUE-3653 [desktop] Return document dependencies and dependents in /desktop/api2/doc/ API
  263. * c062110 HUE-3652 [editor] Add query name to history list
  264. * db33c72 HUE-3410 [editor] Properly persist the parent of an history query
  265. * a9fd93a HUE-3643 [editor] Lighter payload when fetching the history
  266. * 1fffdab HUE-3410 [editor] Track the parent of an history query
  267. * d648d90 HUE-3630 [editor] Display when a query is a query history
  268. * 786dfd3 HUE-3651 [core] Upgrade Moment.js
  269. * 480ddc2 HUE-3644 [editor] Menus from result legend can be hidden
  270. * 7ca5d14 HUE-3650 [beeswax] Notify of caught errors in the watch logs process
  271. * 23985fb HUE-3646 [editor] Fix save results to table and HDFS
  272. * 1b16c12 HUE-3645 [editor] Upgrade session properties when opening saved editor documents
  273. * e08c8b7 HUE-3354 [editor] Fixed save results modal spinner
  274. * a2db5cd HUE-3600 [home] When operating on the home file/folder list, the loading spinner shifts the whole list down
  275. * d069f0b HUE-3601 [assist] Spinner not positioned correctly
  276. * f4b277f HUE-3638 [metastore] Scroll bar disappearing when scrolling
  277. * 6ddc7ce HUE-3642 [home] JS error when opening a folder
  278. * 42ac215 HUE-3641 [home] Actions to create folder etc calls the save configuration endpoint
  279. * 5a8f0df HUE-3605 [home] Align headers and columns
  280. * 9a894f9 HUE-3606 [assist] Disable HDFS and Doc2 until Hue 4
  281. * aacc36e HUE-3637 [sqoop] Avoid decode errors on attribute values
  282. * 638b127 HUE-2962 [spark] Update spark properties to utilize new configuration format
  283. * 8d43f4f HUE-2962 [editor] Fix setting of session-based properties for HS2 types
  284. * 6648b21 HUE-2962 [editor] Support session-based properties with snippet overrides
  285. * 4efe5cb HUE-2962 [editor] Add action to save default settings for the user in the sessions modal
  286. * a93e3b4 HUE-2962 [editor] Support new session properties in the editor
  287. * 45b42bc HUE-2962 [desktop] Add API doc for configuration and fix tests
  288. * 8c88233 HUE-2962 [desktop] Add configuration property definition for HS2
  289. * a195f8e HUE-2962 [desktop] Add initial DefaultConfiguration model, api, tests
  290. * 6511a4a HUE-3618 [doc2] Allow newly imported documents to retain directory structure
  291. * fef888d HUE-3635 [editor] Clear also clears the URL too
  292. * 7de680c HUE-3634 [editor] Reset editor URL when clearing history not on a saved query
  293. * 79a9121 HUE-3633 [editor] Cleanup some properties that should not be serialized
  294. * 40019f8 HUE-3629 [editor] Add executed query to the history
  295. * 7a6e8c5 HUE-3614 [beeswax] Scrolling on assist in old editor also scrolls the editor
  296. * ea9b4a3 HUE-3208 [editor] Add keyboard shortcuts map
  297. * 1b525cb HUE-3622 [home] Enable sorting
  298. * 39a5c5c HUE-3631 [editor] Set the correct database in the drop-down when loading saved queries
  299. * 7419509 HUE-3628 [editor] History highlighter can break the page
  300. * 7b7a724 HUE-3627 [beeswax] Fix test_save_results_to_dir to deal with hive tmp directories
  301. * 4b397ca HUE-3621 [editor] Convert player mode to result only full screen
  302. * 85602e7 HUE-3617 [editor] Fallback to StringIO if cStringIO isn't available
  303. * dd8646f HUE-3612 [editor] Some queries have new lines in history
  304. * aac3124 HUE-3536 [fb] Middle click on breadcrumbs do not open the correct URL
  305. * 66126d7 HUE-3596 [editor] Move results and explain to the tabs
  306. * cc1edfe PR346 [core] Default regex tightened to address open URL redirection
  307. * e03c722 PR-347 [doc] Rewrite gethue.tumblr.com to gethue.com
  308. * 2a2b66a HUE-3619 [editor] Fix HiveHighlightRules js error from query history
  309. * c8decd0 HUE-3441 [zookeeper] Support HA
  310. * 9e6317a HUE-3617 [editor] Fallback to StringIO if cStringIO isn't available
  311. * da74e96 HUE-3545 [editor] Better info message when results have expired
  312. * feeb781 HUE-3564 [editor] Check status can error an empty message
  313. * c5f1143 HUE-3613 [editor] Empty div elements are added when scrolling the DB assist panel
  314. * 7eec788 HUE-3611 [core] Upgrade font awesome
  315. * 5d1c7f4 HUE-3430 [metastore] Navigate by editing table name in the breadcrumbs
  316. * 44372be HUE-3583 [editor] Make split_statements performant for extremely large queries
  317. * cf14b2f HUE-3554 [editor] Prevent history dates of 46 years
  318. * d904ab3 HUE-3593 [editor] Link to the list of notebooks is wrong
  319. * 3b7c18c HUE-3594 [fb] Smarter DOM based XSS filter on hashes
  320. * 7337d8a HUE-3592 [editor] Add a middle title bar to the query lists
  321. * 9b49b25 HUE-3552 [editor] Column list should not show the resize bars in all the cases
  322. * 3416c2a HUE-3515 [stats] Don't show the view more link in stats from metastore
  323. * 0623a77 HUE-3562 [editor] Fetch_result_data can be called more than once
  324. * 12745c6 HUE-3558 [metastore] Disable edit comments when user does not have permissions
  325. * cc1175a HUE-3586 [editor] Better feedback when waiting for the first progress of a query
  326. * 5b4a046 HUE-3584 [editor] Solr SQL does not alway return the column values
  327. * 8eeb883 HUE-3567 [editor] Improved icons and tooltips for query history status
  328. * 1591371 HUE-3580 [sentry] Support non ASCII URI
  329. * cd68e9b HUE-3572 [editor] Map chart is broken
  330. * c406cfd HUE-3582 [editor] Fix typo in Solr connector assist
  331. * 3aebc58 HUE-3581 [editor] Nice scroll goes bananas when dragging from assist to editor
  332. * 81a53af HUE-3546 [editor] Fix wonky header and first col on scroll
  333. * 0923862 HUE-3579 [editor] Pasting a big query should not increase editor size by more than 50% of the page
  334. * 6e498fb HUE-3578 [editor] History syntax highlighting has red dot
  335. * bb898b1 HUE-3576 [editor] Snippet resizer is wonky when error is present
  336. * 08fd395 HUE-3555 [doc2] Exporting directories also exports any children directories and docs
  337. * c581eb1 HUE-3575 [sentry] Force refresh of the Hive tree root too
  338. * 30565e8 HUE-3549 [editor] Conflict when running explain query on a running query
  339. * b7189bf HUE-2890 [doc] Skeleton for new version of user guide
  340. * 6304315 HUE-1389 [oozie] Schedule a hive query automatically
  341. * 481ada8 HUE-1389 [oozie] Add link to open source query
  342. * bdabc38 HUE-1389 [oozie] Fetch Hive queries and display there name and description in workflow
  343. * 7aeac6d HUE-1389 [oozie] Pull list of hive queries
  344. * 7ca1b21 HUE-1389 [oozie] Automatically retrieve Hive query parameters
  345. * f70983a HUE-1389 [oozie] Skeleton to drag & Drop a saved Hive query in a workflow
  346. * 3146fd4 HUE-3543 [hive] Timeout prevents refreshing of the Assist tables/dbs
  347. * fc356fd HUE-3574 [home2] Show readable document types instead of the raw value
  348. * be683b4 HUE-3529 [home2] Remaining documents icons
  349. * cdde08a HUE-3573 [editor] Connect the query builder flag to the UI
  350. * 6ba95fd HUE-3571 [editor] Syntax highlight history
  351. * 9acc052 HUE-3573 [editor] Flag to enable the query builder
  352. * ca94129 HUE-3540 [editor] Prettify the query builder
  353. * 422ffc8 HUE-3539 [editor] Bring back the double click on the assist columns to generate a SELECT statement
  354. * 6e30eb1 HUE-3228 Add filtering on a text facet
  355. * dd5d21e HUE-3228 [editor] Fix js errors in dashboard
  356. * a3ae1a2 Revert "[impala] Remove reference to dashboard on URLs"
  357. * f1080e8 HUE-3570 [editor] Do not error on empty resultset
  358. * 0671c02 HUE-3570 [notebook] Bubble up the exception form Solr SQL
  359. * 26bd101 HUE-3570 [notebook] Specify a default Solr SQL collection handler
  360. * a1de8fd HUE-3570 [notebook] Support Solr sample data
  361. * 42fb6b4 HUE-3570 [notebook] Default Solr collection
  362. * 330a93a HUE-3570 [notebook] Add a limit 100 to /sql call
  363. * 9e51d3f HUE-3570 [notebook] Solr SQL autocomplete
  364. * 1162b24 HUE-3570 [notebook] Skeleton for Solr SQL snippet
  365. * 862a83a HUE-3531 [home] Show shared icon also on shared document
  366. * dbd4642 HUE-3568 [core] Strip HTML from x-editable input values
  367. * 7d2f97a HUE-3556 [home] Harmonize Notebook icon on create Notebook
  368. * dc7abbf HUE-3557 [home] Last modified date doesn’t look like the other dates in general
  369. * 410e480 HUE-3561 [editor] Take scroll top into account when resizing the editor
  370. * 1249169 HUE-3550 [editor] Autocomplete conflicts with certain table names
  371. * 17cdefe HUE-3565 [editor] Hue icon not aligned in Player mode
  372. * 880f195 HUE-3547 [editor] Better user feedback when submitting a query
  373. * fb9c995 HUE-3541 [home] When not logged in the Sign in now button points to /home2
  374. * a5070bd HUE-3551 [core] Remove dashboard from the signin message
  375. * d684e76 HUE-3542 [home] Remove 'Old Home' link
  376. * b1d79cc HUE-3553 [home] Reset the directory name in the create directory modal
  377. * a56862d HUE-3507 [oozie] List workflows displays trashed workflows
  378. * 6c672e4 HUE-3535 [doc] Document about modifying static files in production
  379. * b37fbe0 HUE-3524 [editor] Multi query highlighting seems to hide the query error
  380. * 87df2a6 PR342 [editor] Add simple SQL query builder functionality
  381. * 07539a3 HUE-3538 [core] Standardizing repo ids and upgrading shade plugin
  382. * 4e2bd97 HUE-3530 [home] Add missing document to the create document button
  383. * e718052 HUE-3527 [editor] Display saved results of an expired query loaded from history
  384. * b303a4b HUE-3496 [editor] Query variables are not persisted
  385. * f3b7133 HUE-3502 [editor] Handle correct statement number on multi query error
  386. * 645bf87 HUE-3509 [notebook] Executing a new Hive snippet errors
  387. * 408a17f HUE-3503 [hive] Additional test on partition keys
  388. * b0f28d0 PR343 [rdbms] Big number precision loss
  389. * 03c92f5 HUE-3533 [doc2] Refactor dependencies for importing saved beeswax queries
  390. * 46ad257 HUE-3520 [jb] Use impersonation to access JHS if security is enabled
  391. * 18a114f HUE-3528 [oozie] Call correct metrics api to avoid 500 error
  392. * ddb0328 HUE-3522 [core] Create home directory automatically if needed for SpnegoBackend users
  393. * 8e35712 HUE-3526 [useradmin] Fix LDAP tests for force_username_uppercase
  394. * b85823d HUE-3523 [oozie] Modify find_jobs_with_no_doc method to exclude jobs with no name
  395. * c3203b1 HUE-3521 [core] Provide a force_username_uppercase option
  396. * ce92258 HUE-3445 [doc2] Check parent perms on saving a document and apply as needed
  397. * 8e6583e HUE-3519 [useradmin] Check if user object exists before augmenting in rewrite_user
  398. * c67323f HUE-3488 [oozie] find_dollar_braced_variables skips variables on same line
  399. * 368dace HUE-3518 [editor] Autocomplete for table names is gone
  400. * f12bb20 HUE-3492 [editor] HDFS and table autocomplete in save result popup
  401. * 9962f32 HUE-3251 [home] Use enter to create directory in modal
  402. * 1ef1222 HUE-3259 [metastore] Table stats on table with partitions is always outdated and empty
  403. * c6bebac HUE-3514 [editor] Show actual error message instead of just "OK" in error notification
  404. * b2ddee5 HUE-3513 [assist] Show sample values in column stats popover
  405. * c632160 HUE-3512 [assist] DB Panel doesn't take the source into account when storing the last selected DB
  406. * b8e2dd7 HUE-3511 [assist] Reduce flickering of action icons when moving the pointer across several entries
  407. * a4a6e16 HUE-3495 [editor] Add jasmine tests for Ace textCompleter
  408. * 43f2214 HUE-3333 [editor] Add one more digit to the row number column
  409. * 1f2a048 HUE-3508 [metastore] Fixed overlay conflicts with top menu
  410. * 19d316d HUE-3506 [metastore] Limit length of comments on table page
  411. * 3df51dc HUE-3505 [metastore] Table description now uses an editable textarea
  412. * 0b78281 PR341 [core] Fix a Korean translation
  413. * 69bcd60 HUE-3500 [doc2] Unify dependency relationships representation
  414. * e6166d6 HUE-3501 [docs]: Document new dependency on libffi
  415. * 703129c HUE-3501 [desktop] Upgrade cffi and cryptography deps to fix OS X
  416. * 3057a1c HUE-3499 [editor] Add an expired status in the query history
  417. * 6498c17 HUE-3495 [editor] Autocomplete globs the comments
  418. * 1014e84 HUE-3498 [editor] Do not refresh the assist when loading a query from the history or saved query
  419. * 8b8ec92 HUE-3497 [editor] Auto extend var text input if needed
  420. * c37c9bd HUE-3491 [editor] Style export result button
  421. * 36eabfa PR338 [tools] Introducing docker-compose
  422. * 1005686 PR337 [tools] Missing docker dependency libffi-dev
  423. * 9434c2a HUE-3493 [editor] Load saved queries without reloading the editor
  424. * 8374d15 HUE-3493 [editor] Load queries without refreshing the page
  425. * f7c5529 HUE-3494 [editor] Unify query history workflow
  426. * a1360a8 HUE-3493 [core] Add flag to API to also return the document data
  427. * 8517aee HUE-3493 [editor] Load queries without refreshing the page
  428. * 063bf76 HUE-3489 [editor] Improve result download format stats
  429. * 586c064 HUE-3115 [editor] Multi create table statements makes the assist flickers
  430. * 5a813a4 HUE-3442 [core] Improve memory efficiency of XLS download
  431. * abfab56 HUE-3389 [editor] Provide select from partitions support in get_sample for Impala
  432. * 17dc4a0 HUE-3455 [doc2] Oozie documents are getting a time appended to their name
  433. * 227adea HUE-3474 [editor] uuid of document2 and editor uuid field are mismatching
  434. * 46eea72 HUE-3307 [notebook] Add NiceScroll to the right panel and improve performance of the rendering
  435. * cea697d HUE-3487 [core] Fix Ace Editor import on CssCompletions
  436. * c02a1f4 HUE-3484 [core] Update is_db_alive command to provide finer grain exit codes
  437. * c89b57e HUE-3485 [editor] Prettier query history
  438. * 1b690fd HUE-3486 [fb] Harmonize modal dialogs
  439. * 04c567c HUE-3187 [metastore] Fixed search section
  440. * 5e78e72 HUE-3477 [home] Double backgrounds in right-click context menu
  441. * a3ba75b HUE-3480 [assist] Impala refresh pop-over won't close after assist action while open
  442. * 3f6f974 HUE-3481 [assist] Don't sort the columns by name, instead use the creation order
  443. * 682811e HUE-3442 [core] Increase max num rows for Excel export
  444. * 454ab1e HUE-3483 [search] Recreate test admin user to avoid conflicts
  445. * 31cc155 HUE-3479 [editor] Clear should also clear the result
  446. * ba9fee3 HUE-3400 [core] Only display the 500 server trace when the user is an admin
  447. * c5e673c HUE-3438 [editor] Scrape Spark Application ID during query execution of Hive on Spark
  448. * e2a320f HUE-3476 [assist] Clear any running intervals after closing the stats popover
  449. * cbc76a9 HUE-3249 [home] Icon alignment context menu
  450. * a929a9e HUE-3247 [home] Add titles where needed
  451. * 3c59959 HUE-3340 [oozie] Add Jasmine to Oozie
  452. * 594f63c HUE-3361 [assist] Introduce NiceScroll on the stats popover
  453. * 27a009a HUE-3464 [oozie] Fix test utility that removes a user from a group
  454. * a5f72ee HUE-3470 [editor] Clearing history should delete current query if it is an history
  455. * ab9982b HUE-3472 [editor] Big number precision loss
  456. * ce9e0a2 HUE-3459 [assist] Put stat popover on top
  457. * e45318f HUE-3459 [assist] Fixed Flexbox for IE10
  458. * 1178b10 HUE-3469 [editor] Do not try to save a query handle when submission fails
  459. * 51ad679 HUE-3459 [assist] Use fixed positioning for assist panel
  460. * 5676828 HUE-3459 [assist] Revert sticky assist
  461. * 4a97334 HUE-3471 [beeswax] Set the assist database on design update
  462. * c4557be HUE-3444 [doc2] Assign history objects a default name
  463. * ac51f3b HUE-3471 [beeswax] Assist does not show the DB from the saved query
  464. * d666a91 HUE-3467 [editor] Autodetect and transform dates for X-Axis of line charts
  465. * 8cef026 HUE-3465 [editor] Fix broken jasmine tests
  466. * 1193621 HUE-3468 [editor] Show queries for editor type on the queries page instead of all notebooks
  467. * 159eaec HUE-3408 [editor] Use consistent snippets in the HS2 tests
  468. * ff33fdb HUE-3464 [oozie] Add granular permission to enable only the dashboard
  469. * c1d3ff7 HUE-3463 [core] Stop printing None on error page when there is no exception detail
  470. * 1f9e074 HUE-3462 [metastore] Provide clean message if table data can't be loaded in create table wizard
  471. * 08c230b HUE-3459 [assist] Fix issue with single panel in metastore and new editor
  472. * 9db626e HUE-3372 [assist] Add a bit of white padding on the right for underneath scrollbar
  473. * 594997e HUE-3465 [editor] Cache the value samples for the autocompleter
  474. * 49b52d1 HUE-3209 [editor] Faster touchpad speed when scrolling on result grid on linux
  475. * 9b360e5 HUE-3466 [editor] Align history icons
  476. * 895a66d HUE-3320 [editor] Show a popover for long descriptions
  477. * 48e1fac HUE-3367 [editor] Add data sample for columns
  478. * da381f2 HUE-3458 [editor] Support touchpad horizontal scroll on result grid
  479. * fd38558 HUE-3459 [assist] Clear the height interval on update
  480. * 27a095b HUE-3406 [editor] Save the multi query index
  481. * 5ef7b42 HUE-3408 [editor] Reloading a canceled query will show an error
  482. * 83a27a3 HUE-3214 [editor] Persist status of a running query
  483. * c487223 HUE-3461 [notebook] Flag to show notebooks in the top menu
  484. * 25ae9a4 HUE-3456 [notebook] Send notebook type when executing snippets
  485. * 70384e4 HUE-3454 [editor] Textarea height is not persisted
  486. * 972c9e2 HUE-3460 [core] Cancel unused intervals on jHueTableExtender
  487. * 442b0d5 HUE-3459 [assist] Assist doesn't stretch to the end of the page in the old editors
  488. * 407de80 HUE-3450 [editor] Disable value stats and suggestions in the autocompleter
  489. * 9786235 HUE-3457 [assist] Assist is not showing up in old editors
  490. * 825d38d HUE-3453 [editor] Do not show clear history button when empty history
  491. * a453da9 HUE-3436 [oozie] Retain old dependencies when saving a workflow
  492. * 520418d HUE-3452 [home] Some icons on selected rows have white background
  493. * a3e9dda HUE-3433 [home] Use a solid share add-on for shared doc icons
  494. * 21ef41d HUE-3451 [assist] Add DB icons
  495. * 8bd41b8 HUE-3230 [core] Remove Plotly dependency from common_header
  496. * dba9a4e HUE-3433 [home] Make icons more recognizable
  497. * 8df89f1 HUE-3431 [home] Improve the sharing modal add user action
  498. * 81e5477 HUE-3450 [metadata] Add similar queries API
  499. * 2d51e93 HUE-3450 [assist] Make enrichment optional in assist
  500. * 0397918 HUE-3450 [metastore] Add metadata URL check on partition page
  501. * 5366a0f HUE-3450 [metadata] Improve mocked query hint on join
  502. * 3ad1e24 HUE-3450 [metastore] Show if fact or dimension table
  503. * a71931b HUE-3450 [metadata] Disable enrich by default
  504. * 0004f5d HUE-3450 [editor] Add a real link to Impala
  505. * c387547 HUE-3450 [metastore] Only sort by popularity whehn enrich is turned on
  506. * f1638cd HUE-3450 [metastore] Sort tables by popularity
  507. * 5e46b4f HUE-3450 [metadata] More error protection in topTables API
  508. * 4d778d4 HUE-3450 [editor] Move hint suggestion to 5s timeout
  509. * e47f4a1 HUE-3450 [metastore] Show optimizer button only when enrich is selected
  510. * a2be2de HUE-3450 [metadata] Filter search entities by certain types
  511. * 51cd8a4 HUE-3450 [metadata] Workaround bug in Opt popular value API
  512. * 257cf6e HUE-3450 [editor] Plugin query compatibility API
  513. * 289f8e2 HUE-3450 [editor] Suggest popular values next to columns in autocomplete
  514. * 6f895e0 HUE-3450 [medatata] Add default empty values to the lineage API
  515. * 9aa4dad HUE-3450 [metastore] Do not jsonify the table id
  516. * ca315bd HUE-3450 [metadata] Load relationships after getting the table id
  517. * d34ba96 HUE-3450 [metadata] Implement getPopularFilterValues API
  518. * 1cbe919 HUE-3450 [metadata] Use real id for relationships
  519. * 5a74079 HUE-3450 [metadata] Add relationships section
  520. * 14a6619 HUE-3450 [metadata] lowercase inputs and flatten and lowercase targets
  521. * 84c8297 HUE-3450 [metadata] Consisten error handling in table_details
  522. * 41c2110 HUE-3450 [metastore] Move popularity title to the full progress bar
  523. * 96ff9ec HUE-3450 [editor] Slight improvement of redacted and complexity notifications
  524. * e842b47 HUE-3450 [assist] Perform empty search on focus
  525. * 3e8d331 HUE-3450 [metastore] Add column popularity to table page
  526. * 0a81814 HUE-3450 [metastore] Make consistent background of joins
  527. * fc7802b HUE-3450 [metadata] Revise lineage API to be simpler
  528. * e19c74b HUE-3450 [editor] Limit popular tables fetching to default DB
  529. * e62dca8 HUE-3450 [editor] Autocomplete with popular columns + values after 'select * from x where '
  530. * 605ca78 HUE-3450 [editor] Autocomplete with popular values after 'select * from x where y = '
  531. * 062e50c HUE-3450 [metastore] Add counts of joins and queries
  532. * bebe940 HUE-3450 [metastore] Add progress bar to table join percentage
  533. * 6ae3a7f HUE-3450 [metastore] Display tables joins
  534. * 94b5256 HUE-3450 [metastore] Require at least 3 columns for the top columns
  535. * b512df0 HUE-3450 [metastore] Bump the top 5 columns first
  536. * 18fb397 HUE-3450 [metadata] Add popular_values API
  537. * 3055f01 HUE-3450 [metadata] Add view in optimizer button
  538. * 612522c HUE-3450 [metadata] Add related queries on table page
  539. * 87a0c6a HUE-3450 [editor] Add SQL query compatibility button
  540. * a389b03 HUE-3450 [metastore] Add missing metadata flag on database page
  541. * 425b753 HUE-3450 [metastore] Integrate with real topTables
  542. * 9b0fb2f HUE-3450 [assit] Add more links and icons to the search
  543. * fd4add4 HUE-3450 [assist] Add table links to search
  544. * 046e121 HUE-3450 [metadata] Fix typo in query hint API
  545. * bc26afb HUE-3450 [metadata] Filter find_entity based on filesystem
  546. * 9239d0a HUE-3450 [metadata] Add data in table autocompletion
  547. * 2ed85db HUE-3450 [medatadata] Add tagging to databases
  548. * 9da2b81 HUE-3450 [assist] Improve nav search result
  549. * db5f8e7 HUE-3450 [assist] Enable enrich toggle for assist search
  550. * f663715 HUE-3450 [assist] Initial nav search implementation
  551. * eebaa3b HUE-3450 [core] Improved icons
  552. * d9e4d4c HUE-3450 [metadata] Fix typo in entity search
  553. * b861021 HUE-3450 [metadata] Add lineage endpoint to Navigator API
  554. * 2409a38 HUE-3450 [metastore] Offer to edit table tags
  555. * 8087211 HUE-3450 [metadata] Allow empty Navigator search query to get all entities
  556. * 08a14ee HUE-3450 [metastore] Add a mock permission table page tab
  557. * 87681a2 HUE-3450 [metastore] Mock table statistics to all the databases
  558. * f3850a2 HUE-3450 [metastore] Support statistics by databases
  559. * 3924194 HUE-3450 [assist] Add navigator search skeleton
  560. * 0b95d09 HUE-3450 [assist] Fix issue with no panels selection after all panels are removed
  561. * b0c1205 HUE-3450 [metastore] Merge optimizer stats with the tables and show progress bar + count
  562. * b86976d HUE-3450 [metadata] Switch to if binding for optimizerEnabled
  563. * d710104 HUE-3450 [metadata] Provide hints on queries
  564. * e0dd8fe HUE-3450 [metastore] Rename top tables title
  565. * 57fd08f HUE-3450 [metadata] Add get_field and update find_entity endpoint
  566. * f8df374 HUE-3450 [metadata] Initial search_entities Navigator API endpoint
  567. * d84877e HUE-3450 [metastore] Show extra medata fields when available
  568. * 62f5d4c HUE-3450 [metastore] Add top 10 tables as a piechart
  569. * 5b9ce9d HUE-3450 [metadata] Add on/off Optimizer flag for Metastore
  570. * d37815f HUE-3450 [metadata] Enable enrichment of table list
  571. * 30ccecd HUE-3450 [metadata] Refactor Navigator API for v3 support
  572. * df2fd42 HUE-3450 [metadata] Add API to get query compatibility
  573. * ee40e77 HUE-3450 [metastore] Initial metadata integration
  574. * 5d258b1 HUE-3230 [core] Introduction of Plotly JS
  575. * ad4ae17 HUE-3448 [useradmin] Do not show edit permission icon link if the user does not have the permission
  576. * 773a33f HUE-3446 [editor] Limit the height growth of the SQL textarea
  577. * 32a2101 HUE-3347 [editor] Improve current query highlighting
  578. * db74f44 HUE-3443 [doc2] Allow docs to be saved without name and add HOME_DIR constant
  579. * 149a502 [jb] Skip jobbrowser log test if not in live cluster mode
  580. * 553dea9 HUE-3407 [editor] Do not hide the multiquery counter when executing a query
  581. * 3a210c4 HUE-3434 [jb] Logs of finished Oozie workflow are not displayed
  582. * 45a5141 HUE-3412 [editor] Provide start and end position in multiquery execute() API
  583. * 50dda74 HUE-3437 [core] PamBackend does not honor ignore_username_case
  584. * 02fcde5 HUE-3383 [notebook] Update historify tests to use the new helper
  585. * 95e5725 HUE-3423 [hive] Add server interface into the debug statement
  586. * d4523c7 HUE-3413 [editor] Do not give a default name to new queries
  587. * ff046b1 HUE-3411 [editor] Add tooltips to the snippet headers
  588. * 0bbf81d HUE-3383 [editor] Move historify to the backend
  589. * dc6936b HUE-3435 [oozie] Do not break the history when passed workflows have some credentials
  590. * 205f81f HUE-3424 [doc2] Restrict re-sharing to permission the user does not have in the popup
  591. * a2140a0 HUE-3432 [home] Sharing modal doesn't show the document name and there's white space in the user names
  592. * 46b0788 HUE-3428 [home] When starting in a folder and going back to the root it's not loaded
  593. * febdd17 Merge pull request #310 from oflebbe/master
  594. * 15cc437 Merge pull request #334 from sky4star/master
  595. * 61ff787 [livy] bug fix, recognize spark property: files, jars
  596. * 9a86082 HUE-3429 [assist] Analysis alert icon goes to a new line on Firefox
  597. * c96a178 HUE-3370 [metastore] Show the sample icon in the assist and related pages
  598. * 88424b2 HUE-3427 [home] Rename remove and delete to match file browser wording
  599. * 7ce4b2c HUE-3426 [home] Removing group share throws error
  600. * 23c01eb HUE-3388 [home] Hue admin should have the delete button enabled
  601. * 4860968 HUE-3420 [assist] DB assist shows --> icon for databases all the time
  602. * 403245b HUE-3425 [metastore] Lack of horizontal scroll on sample tab
  603. * eb11e9e HUE-3421 [doc2] Restrict re-sharing to the given user's permission level
  604. * 4fb2aa0 [doc2] Validate against creating circular dependency when saving and moving docs
  605. * ad4caf3 HUE-3338 [doc2] Support saving a notebook/editor to a specific parent directory
  606. * c1c518f HUE-3418 [core] Update hierarchy of beeswax/impala conf so that it doesn't get clobbered by SSL configs
  607. * 0109911 HUE-3385 [editor] Add feedback on cancel button
  608. * 40ac1d5 [doc2] Check CSRF token when importing and exporting docs
  609. * c7e040f HUE-3409 [home] New documents should open in new editors
  610. * 2924ab0 HUE-3392 [oozie] Send deleted workflows/jobs to trash instead of destroying
  611. * 4a8da8b HUE-3384 [editor] Need better error message when canceling instead of None
  612. * 3173731 HUE-3398 [beeswax] Filter out sessions with empty guid or secret key
  613. * 52f5f3a [metastore] Support parsing precision scalars in nested types
  614. * 841061f HUE-3402 [fb] Replace edit path icon with on hover styling
  615. * 71ff3fc HUE-3399 [editor] Column show after some scroll shifts the headers
  616. * c1d4321 HUE-3403 [home] Big bar is back on the assist on chrome
  617. * da56b88 HUE-3397 [core] Flaky and sometime double scroll bar
  618. * 70519a8 HUE-3382 [fb] After a file upload, change the background of the new rows to be more visible
  619. * 6761684 HUE-3396 [doc] Disabling an app might trigger and error on each page with assist
  620. * fe0e40d HUE-3395 [core] Avoid querying on TextField to bypass Oracle ORA-00904: : invalid identifier error
  621. * f6900ae HUE-3390 [search] Solr Index browser in Hue mislabeling Indexed/Stored fields
  622. * 0d1e20a HUE-3393 [security] Remove Sentry app dependency on Hive app
  623. * 6b63e5b HUE-3379 [editor] Wire explain button
  624. * c110b63 HUE-3368 [home] Increase the size of the icons in the doc list with a few pixels
  625. * 48a9696 HUE-3381 [editor] Horizontal scroll bar handle is always tiny
  626. * 50512c6 HUE-3386 [core] After TTL expires the UI should exit and logout the user
  627. * 4616ba6 HUE-3391 [security] Remove dependency on Search app
  628. * 2dc520d [beeswax] Fix sample partition test to accept optional column
  629. * a61084d HUE-3357 [editor] Update sample API to provide data for a column
  630. * ed784d6 HUE-3387 [editor] Show the history in the examples
  631. * 9c3a66f HUE-3377 [editor] Cancel button is greyed
  632. * 5a7eb5e HUE-3380 [core] Harmonize menu labels for responsive FB and JB
  633. * 82cd913 HUE-3349 [editor] Harmonize multi query counter
  634. * d9b3aed HUE-3330 [core] Replace perfectScrollbar with Nicescroll
  635. * 82c0e00 Merge pull request #324 from xq262144/master
  636. * 00bf745 [desktop] Fix oauth_authentication_time metric decorator typo in liboauth
  637. * 37573d1 HUE-3378 [editor] Cookie the 'show logs' action
  638. * 1c7d16f HUE-3345 [editor] Display info message when a query was redacted
  639. * eec343d HUE-3331 [editor] Explain API functionality
  640. * 026ff0c [jb] Use MR API if the job is in a running state, fix tests
  641. * b237af1 HUE-3305 [oozie] Show last 30 workflow materialization in SLA graph, rather than first 30
  642. * 2fa6f44 HUE-3365 [editor] Display column type as tooltips
  643. * a08b2af HUE-3215 [editor] Ellipsis the query string in the history
  644. * e461617 HUE-3355 [editor] Allow the INSERT into HDFS only for Hive
  645. * 9f9515c HUE-3315 [editor] Save large result on HDFS
  646. * 4beef78 HUE-3313 [editor] Save result as a table
  647. * 943fa8c HUE-3314 [editor] Save result as csv HDFS file
  648. * b1866eb HUE-3356 [jb] Fall back to JHS if a job is not found in YARN RM
  649. * 00507fe HUE-3369 [metastore] Sample icons in table list does not display anything
  650. * d4e15a1 HUE-3363 [home] Right-click context menu is not shown in Firefox
  651. * 2f87ad0 HUE-3364 [home] Limit actions for docs that are shared with the user
  652. * d7a5efe HUE-3362 [home] Indicate that a folder or doc is shared with the user
  653. * 62c6ac3 HUE-3360 [home] Document search is incorrectly positioned
  654. * b8c25d9 HUE-3359 [home] Document search is broken
  655. * 814bace HUE-3358 [home] Use SVG icons with hive and impala logos for documents
  656. * 13bb359 HUE-3352 [home] If the user only has one folder that is shared with the user open it by default
  657. * ee929e0 HUE-3346 [assist] Line below tabs are not properly positioned
  658. * 913fcfb HUE-3347 [assist] Column stats are empty
  659. * 411a116 HUE-3351 [home] Drop the shared column
  660. * ac4f7f1 HUE-3340 [home] Truncate long document names with ellipsis
  661. * 4ee6ea0 HUE-3337 [assist] Empty result indicator is incorrectly positioned
  662. * d83c5bd HUE-3342 [home] Set the proper URL when navigating back to root from a folder
  663. * 48b2498 HUE-3290 [doc2] Add tests for import_documents
  664. * 38b19d8 HUE-3290 [doc2] Improve import JSON document UX
  665. * 66af603 HUE-3350 [metastore] Reverse browsing link to use the correct version of the editor
  666. * bbd8dd8 HUE-3336 [editor] Move Explain to first position in snippet combo button
  667. * caba0a9 HUE-3207 [doc2] User's home directory response returns shared docs in the children collection
  668. * 3520d80 HUE-3293 [core] Put new editor flag in [dektop] in hue.ini
  669. * 848cac6 [tools] Add lint-checker git pre-commit hook
  670. * ca6ca1a HUE-2678 [jobbrowser] Read Spark job data from Spark History Server API
  671. * 096d22b HUE-3339 [useradmin] Delete groups that have been xssed
  672. * aedd69c HUE-3216 [assist] Merge sample + stats popups
  673. * 4b44d80 HUE-3321 [editor] Don't save the settings visibility state with the editor
  674. * d0248e2 HUE-3335 [editor] The action buttons next to editor and result are not aligned and too close to the panels
  675. * c10cb66 HUE-3334 [editor] Update test, now se send empty query instead of error
  676. * 67eaaec HUE-3334 [editor] Skip checking for multi queries if there is no semi colon
  677. * 30646b4 HUE-3312 [editor] Generic SQL icon instead of Hive for postgres, jdbc.. snippets
  678. * b54df8f HUE-3282 [editor] Combo buttong with Clear, Explain, Format
  679. * 749fc5e HUE-3171 [editor] Fix vertical resize handle for queries with long descriptions
  680. * 51fb8ed HUE-3171 [editor] Long descriptions doesn’t wrap and headers from table follows with horizontal scroll
  681. * 78cfc35 HUE-3289 [assist] The action icons stay a bit too long after hover
  682. * d11120c HUE-3310 [jobsub] Prevent browsing job designs by API
  683. * 108d6f9 HUE-3301 [editor] Add generic API support for fetching table sample data
  684. * fa3bb0f HUE-3302 [jb] Display 403 error in a popup
  685. * c5dad1d HUE-3120 [editor] Export to excel sometimes fails
  686. * 5309c59 HUE-3203 [metastore] Reset the loading state of the submit button
  687. * b3ea1ee HUE-3303 [core] PostgreSQL requires data update and alter table operations in separate transactions
  688. * 2ba34a7 HUE-3293 [core] Prevent document matching query error when going one home 1
  689. * d6c1268 HUE-3293 [core] Fix mis-switching to new home page when new editor is on
  690. * c0f63a7 HUE-3293 [core] Move new editor flag to desktop
  691. * 0e66251 HUE-3100 [useradmin] Only show language select if user profile is for current user
  692. * 8de37b9 HUE-3100 [useradmin] Add a language setting in User's Edit Profile page
  693. * c56af90 Merge pull request #318 from antbell/enable-xlsx-write-optimization
  694. * 498c803 HUE-3221 [metastore] Styling on column stats popup leaks on the tables page
  695. * 6285809 Use .xlsx write-only optimization in export_csvxls.py
  696. * 399faa9 HUE-3201 [editor] Resize query area handle bar is flaky
  697. * 9ad223c HUE-3203 [metastore] Allow load data popup to show up
  698. * 0591f8f HUE-3199 [oozie] Add support for earlier schema versions in external workflow graph
  699. * a04bdad [oozie] Fix failing unit test for HUE-3198
  700. * 4b9f8b6 HUE-3163 [editor] Save results to Hive table redirects to Metastore but doesn’t display new table
  701. * 59bce3d HUE-3198 [oozie] Remove end/kill node hardcoded names in external workflow graph parsing
  702. * 5ef0bd6 HUE-3196 [metastore] Hide potential double scrollbar on assist
  703. * 5d477c9 HUE-3186 [metastore] There are no spinning spinners on load
  704. * 5adf1a4 HUE-3193 [core] The login form should display the ldap server nicely
  705. * 940c887 HUE-3195 [metastore] When setting the table name in the URL it sometimes shows the list of databases
  706. * d88f361 HUE-3194 [metastore] After creating a table or database the user is not always taken back to the metastore
  707. * c9743fd HUE-3078 [impala] Make the flush_all an option on invalidate when refreshing
  708. * 93c9d2a HUE-3181 [desktop] Avoid distinct query which fails on Oracle objects with CLOB (text) fields
  709. * b159b5a HUE-3189 [search] When select type of chart, switch to the chart mode even if not on it
  710. * ed7f55f HUE-3078 [impala] Drop the remember invalidate decision from assist refresh and add flush_all = true
  711. * 4137517 HUE-3173 [fb] The file uploaded correctly message after a desktop drop upload is shown after the first click away from FB
  712. * 9298f89 HUE-3148 [metastore] Rename 'View in Metastore' link in sample popup
  713. * ca764db HUE-3190 [metastore] Hide refresh stats button if user does not have the permissions
  714. * a10b707 HUE-3185 [oozie] Avoid extra API calls for parent information in workflow dashboard
  715. * 18cfde7 HUE-3161 [oozie] Fix automatic workflow parameter population in Coordinator editor
  716. * 17c5714 HUE-3150 [fb] File refresh icon doesn't do anything
  717. * 399f1ee HUE-3159 [metastore] Column name links don’t do anything
  718. * d11af65 HUE-3162 [oozie] Change Bundle submission start and end date to server TZ
  719. * 1be033a HUE-3167 [metastore] Column stats refresh warning is not accurate
  720. * 8d315c0 HUE-3172 [fb] Canceling a dropped file from Desktop causes a JS error
  721. * b88ddb9 HUE-3177 [metastore] Automatic scroll to top when opening a table or database
  722. * 6af05ba HUE-3178 [metastore] We do not default to any DB in assist and table page
  723. * eda32e3 HUE-3125 [fb] Offer d&d progress bar to regular uploads
  724. * a9b450c HUE-3169 [fb] Improve visibility of the loading status
  725. * 65b0780 HUE-3154 [metastore] Select all checkbox is reversed
  726. * f365f20 HUE-3174 [fb] Confirm empty trash should have a btn-danger button
  727. * 59eae55 HUE-3151 [fb] Saving a file where you don’t have permissions gives an http 500
  728. * d2ae487 HUE-3160 [metastore] Update test to read the correct response field
  729. * 43a04c3 HUE-3181 [search] Hue demo collections should use global blockcache
  730. * 6e14613 HUE-3163 [beeswax] Fix Save to Hive table form validation to construct correct redirect URL
  731. * 06917a0 HUE-3180 [useradmin] Override duplicate username validation message
  732. * ca7d7a2 HUE-3168 [beeswax] Canceling a query can give a js error
  733. * be1dfd5 HUE-3179 [desktop] Catch potential dependency errors in converter
  734. * 53c4fab HUE-3176 [metastore] Hide the ability to import data into views
  735. * ad8333b HUE-3160 [metastore] Adding a comment to a column doesn’t give an error if there are no permissions
  736. * fbf1630 HUE-3156 [hive] XLS or CSV download with Impala error
  737. * ecf5408 HUE-3166 [metastore] Use the new way of browsing only with the new editor
  738. * 440fcce HUE-3165 [metastore] Do not show load data button when missing write permission
  739. * 95cc25d HUE-3145 [metastore] Show error when missing permission to load data table
  740. * 0a768c4 HUE-3147 [hive] Explain button causes JS error
  741. * a9c0e5c HUE-3157 [metastore] Table headers disappear when scrolling down
  742. * 625e6b2 HUE-3155 [assist] Fix resizing being stuck
  743. * 419ed7c HUE-3153 [fb] Fix issue where history included a leading =
  744. * 5ced8c9 HUE-3142 [editor] Disable terms panel
  745. * f89d476 HUE-3152 [fb] Moving a file doesn’t show the tree if you don’t have the right permissions
  746. * 70d3634 [metastore] Move scroll to columns table instead of on window
  747. * 709500c HUE-3158 [assist] Fix assist resizing issue
  748. * 016c9a7 [core] Tune the increment and limit for foreachVisible
  749. * aa10955 HUE-3144 [beeswax] Install either SavedQuery or Doc2 depending on use_new_editor flag
  750. * 11d89b8 HUE-3144 [home] Hide new query examples from old home page
  751. * 064ed58 HUE-3141 [doc2] Remove unused tags field from import
  752. * 9813a65 HUE-3139 [core] Update default banner sample text to fit
  753. * acd0af0 change option name in a configuration parser
  754. * 17703aa hide away django from an end user.
  755. * 13e9df0 Use default in the configuration. Move option out of SSL related options group
  756. * f7b823a X-Frame-Options value can be set in desktop config.
  757. * 873e2f9 [beeswax] Fix error when executing after browser refresh
  758. * b3e5205 [core] Add $indexOffset and support for plain arrays in foreachVisible
  759. * 5eb1104 [core] Disable HTML validation as extremely verbose and currently unused
  760. * 2e13a82 [metastore] Remove link to user page as this page does not exist yet
  761. * 7878963 [editor] Fix JDBC API connector
  762. * aac6fcb [core] Prettify unifying the general log level
  763. * d92810d [core] Set all loggers to debug when debug is ON
  764. * 5b019c8 [core] Force all DEBUG when django_debug_mode is True
  765. * fae83f3 [pig] Avoid 404 on fetching the list of tables
  766. * fc0763e [pig] Do not include variables in single line comments
  767. * d2370bc [hive] Do not load back server_host/server_port from DB
  768. * 426a78e [core] Avoid {"auth": false} footer when displaying the PopupError page
  769. * 9a7eaeb [security] Enable KO deferred updates and improve the saving UX
  770. * cae6e7f [core] Link the correct home to the topbar home icon
  771. * ba05647 [pig] Init assist helper with user for the correct cache
  772. * edab477 [editor] Support partial matching of table and database names after from keyword
  773. * 81c7ac1 [core] Fix broken jasmine tests
  774. * 02f00b0 [beeswax] Get rid completely of any reference to the old autocomplete
  775. * 4d88499 [editor] Add tgz as archive extension
  776. * 1fd70ec [pig] Wire HCat autocomplete to AssistHelper
  777. * 005ea87 [core] Enable ignore_username_case and force_username_lowercase for SpnegoDjangoBackend
  778. * 9f51ecb Merge pull request #311 from fermich/master
  779. * 2b518e6 [metastore] Fix filtering by partition
  780. * 0226746 [notebook] Fix regex for HDFS paths, fix test
  781. * 516b22b [metastore] Don't reference non existing variable in partition filter
  782. * 78381b5 [notebook] Refactor HS2Api and add initial test framework
  783. * d37f082 HUE-3132 [core] Fix Sync Ldap users and groups for anonymous binds
  784. * b251c95 HUE-3053 [oozie] Timezones mixed on Coordinator Dashboard
  785. * b385919 [editor] Switch functions list setting to map instead of list of strings
  786. * 173e2fa [editor] Switch files list setting to map instead of list of strings
  787. * af6c142 [beeswax] Fix test_clear_history
  788. * df09064 [beeswax] Recreate customers parquet file sample
  789. * a2fcdc6 [metastore] Speed up loading of initial page
  790. * 439da83 [beeswax] Introduce hueDataTable for tables with more than 500 cols
  791. * 7459cef HUE-3078 [impala] Ask if the user wants to invalidate on refresh for Impala
  792. * 28100a1 [assist] Switch to database view on refresh
  793. * fd18ce9 HUE-3078 [impala] Call invalidate when the assist is manually refreshed
  794. * af2aafc HUE-3126 [fb] Disable modal hide on file upload
  795. * e2a1953 [beeswax] Improve window sizing for assist
  796. * e066c23 [beeswax] Don't include db references in autocomplete for the old editors
  797. * ae1109b [core] Add the Hue version to the Require load URL
  798. * 00ee249 [core] Remove window resize delays for IE8
  799. * 33a870c [impala] Fix test_get_settings by granting test user access to impala
  800. * a7a73a0 [editor] Do not call fetchHistory twice on new queries
  801. * 130d63a [editor] Use the new API to list saved queries
  802. * 92c7d20 [editor] Prevent List index out of range when number of queries changed
  803. * 60774a6 [beeswax] Add a get_settings API endpoint and add test
  804. * abf9392 [doc2] Add an update_document endpoint
  805. * 2fe09eb [notebook] Accept settings, file_resources, and functions as serialized by request
  806. * 462d25b [libsaml] Document in the ini the private key password file property
  807. * 99f31ee [assist] Show a message when no databases are found
  808. * 36d5f39 [editor] Use key value input for settings
  809. * 98bbdd8 [editor] Constrain the sortable properties and move the minus next to input
  810. * ced5657 [core] Upgrade knockout-sortable
  811. * 428d272 [beeswax] Enable a whitelist of Hive configuration properties that users are authorized to set
  812. * 82cd591 [doc2] Fix tests related to doc2 API changes
  813. * 20efe75 HUE-3124 Display the restart button when we have more statements to execute
  814. * 8560caf [editor] Display number of statements when using multi queries
  815. * 446e05c [desktop] Allow doc1 API tests to accommodate old and new editor modes
  816. * daa6bc2 [doc2] Fix history fetching and update documents API in JS
  817. * d2e2756 [doc2] Better renaming of include_history flag on search_documents
  818. * f19d7aa [doc2] Refactor documents API and consolidate views
  819. * 6bfc61e [doc2] Add search_documents endpoint at /desktop/api2/docs/search
  820. * 6777a7b [oozie] Skip check for new oozie docs
  821. * 032e896 HUE-3096 [core] Log warning when downloading to CSV or XLS and file is truncated
  822. * c64d2b1 [jb] Do not display a duration for applications that don't have a start time
  823. * 2dc47ee [editor] Rename My queries tab to just Queries
  824. * b7ed21f [editor] Better logging of query execution
  825. * 3879fe8 [home] Hide directories from old home page
  826. * 6280231 [editor] Save different working queries for Hive and Impala and different users
  827. * 6b053e7 [assist] Always show the search and refresh actions instead of only on hover
  828. * eefbb46 [assist] Only show the documents in assist when the new editor is used
  829. * 09e28f7 [editor] Add onStart callback for the Ace resizer
  830. * aa07421 [home2] Fix sharing
  831. * 21a1620 [oozie] Fix integrity error on lookup by UUID
  832. * eb4e9ab [oozie] Add oozie examples to shared Doc2 examples directory
  833. * fe14606 [core] Revert setting MySQL default engine to InnoDB
  834. * f8197d7 [editor] Add the possibility to expand the logs
  835. * 50b689a [assist] Fine-tune inner panel resizing and fit
  836. * c7de85a [assist] Fix wonky inner panel layout
  837. * d92429e [editor] Show pagination just if there are multiple pages
  838. * 312e607 [editor] Added more space on top of the history tables
  839. * fe82cd1 [editor] Style the query history and my queries tabs
  840. * 5242a42 [editor] Populate the queries table
  841. * e10a95b [editor] Fetch paginated queries
  842. * 3047a20 [editor] Introduce tabs for query history and my queries
  843. * 6834ea3 [assist] Add type option to document search
  844. * 1a9b84f [editor] Fetch history when loading saved queries
  845. * 3a2cfe69 [editor] Limited editor expansion to 2000 lines
  846. * ef4b4e1 Uncover ability to set the oozie.use.system.libpath variable on the Workflow Settings view
  847. * dd11d28 HUE-3086 [oozie] Upgrade email action to 0.2
  848. * 90b4155 [desktop] Rename paths to old home in tests
  849. * 42c7488 [metastore] Hide the tagging section
  850. * e51f0ec [metastore] Hide unused columns
  851. * b0b4f25 [editor] Turn the new SQL editor on by default
  852. * 7aba6ae [assist] Add error check for code 500 and 503
  853. * a43c609 [spark] Fix path to example Spark fixture
  854. * 4f16496 [beeswax] Update install examples to be compatible with old and new document types
  855. * 6408c01 HUE-3111 [editor] Improve performances for query files of 20k+ rows
  856. * 3be5444 [assist] Fix refresh issue when listing databases
  857. * 2ec8f92 [editor] Use foreachVisible in the DB selection dropdown
  858. * 1c0591b [core] Added support for SQL comments to vkbeautify
  859. * 620d04f [core] Added CACHEABLE_TTL default value to the .ini templates
  860. * 9aebb85 [core] Introduced CACHEABLE_TTL desktop configuration for the Assist/Autocomplete cache TTL
  861. * 2fb80ad [assist] Add refresh button to HDFS panel
  862. * 474c6b7 [assist] Improved cache refresh handling
  863. * b59870e [editor] Keep the DB selection dropdown visible when opened
  864. * 2ffd093 [assist] Only fetch the documents when that panel becomes visible
  865. * fb64ce3 [editor] Remove force update to the scrollbar that hides autocomplete
  866. * 61a3303 [assist] Queue the db-related API calls
  867. * 60aba81 [beeswax] Add support to run beeswax tests in Hive on Spark mode
  868. * 72b47a7 [doc2] Install beeswax and impala examples as Doc2 queries
  869. * e3e883f HUE-3071 [oozie] Add workflow link in dashboard graph for sub-workflow action
  870. * 5a09404 [core] Recreate scrollbar on foreachVisible update
  871. * 04a108d [assist] Fix problem with missing drag data from dividers drag
  872. * 6fb88fe [core] Add a scrollYFixedTop setting for Flex-based scrollbars
  873. * 3e85931 [core] Fix broken jasmine tests
  874. * 0218995 [metastore] Improved icons on database page
  875. * 5a83817 [core] Added Perfect Scrollbar sources for Hue specific changes
  876. * fa286de update pyopenssl to 0.15.1
  877. * 7ac56a2 [home2] Speed up the isTrashed computed
  878. * 88dfd23 [assist] Only cache responses that contains entries
  879. * 2b0a0b1 [metastore] Hide the stars
  880. * ed54532 [core] Fix issue where foreachVisible accidentally renders all the items
  881. * e933d24 [notebook] Update tests to verify that history API filters by type
  882. * 52cac00 [hive] Prevent 'Could not connect to xxx:21050: Int or String expected'
  883. * a0fa636 [sentry] Disable the with Grant option for Solr
  884. * 13039a8 [search] Trigger back the display of the field analysis popup
  885. * 45d48c7 [core] Add a command to test the DATABASE connection
  886. * c377043 [core] Do not set a default path for SSL ca_certs
  887. * 171fdb1 [assist] Introduce a fetch queue for requests to the same URL with same parameters
  888. * 9e241d5 [home2] Drop one superfluous fetch of documents
  889. * 75715bc [home2] Add the delete top action back
  890. * dbf2c86 [home2] Fix the double scrolling bar
  891. * 82a035e [core] Add a per-browser configurable Assist cache
  892. * a6e6925 [editor] Truncate SQL import after 5000 lines
  893. * 88b8e94 [editor] Added jHueScrollUp for the right panel
  894. * 46bca65 [editor] Redraw fixed headers on variables show/hide
  895. * f807174 [editor] Redraw fixed headers on logs slide down
  896. * cb4f918 [editor] Redraw fixed headers on history slide down
  897. * a4f3aee [home2] Enable drop of files on the trash icon
  898. * 4ba8a87 [home2] Enable drag to select of documents and not just directories
  899. * c625168 [home2] Fix issue with hidden search preventing breadcrumb clicks
  900. * 1fdab09 [doc2] Remove has_children property
  901. * a5a9f4e [doc2] Implement and test recursive skip trash
  902. * 5b89511 [doc2] Adjust doc2 same name validation to be less strict and only rename but not throw error
  903. * f7f50f7 HUE-3110 [oozie] Fix bundle submission when coordinator points to multiple bundles
  904. * 6595161 [doc2] Allow to move files into a directory
  905. * 1e4739c [editor] Fix scrollbar size after new results are rendered
  906. * 466aecb [editor] Enable mousewheel support for the horizontal scroll
  907. * 214940b [editor] Create always visible horizontal scrollbar for the result table
  908. * c3399bf [editor] Improved UX of the result table (sticky header) and enabled custom scrollbar for the right panel
  909. * 87fd928 [home2] Disable unsuitable top actions when in trash
  910. * c7bdeda [home2] Only show delete when right-clicking trashed documents
  911. * 99f73e5 [home2] Don't show sharing in the trash
  912. * 4af3bf9 [editor] Remove Kinetic from the result tables for better scrolling performances
  913. * 65720b5 [doc2] Add has_children property
  914. * 7f8adfb [home2] Enable delete forever with alt + right-click on selected entries
  915. * 284beaf [home2] Add action to show the trash
  916. * ec83b08 [notebook] Fix notebook tests
  917. * f4292dc [notebook] Update historify API and add tests
  918. * 2118733 [doc2] Fix converter permissions test
  919. * 9ea761a [oozie] Fix footer of the bundle page
  920. * c1de65d [doc2] Add tests for Doc1 to Doc2 converter
  921. * e72503c [doc2] Copy permissions during import
  922. * 3742cf1 [doc2] Create separate module for converting doc1 to doc2
  923. * 7e47c50 [doc2] Import Job Designs as linked doc2
  924. * b86bdc9 [doc2] Import Pig scripts as a linked doc2
  925. * 6b6741e [doc2] Auto-rename documents and directories with same name at same path
  926. * 6a8b54d [doc2] Fix doc2 validation test
  927. * 4fd7c6a [editor] Temporarily removed custom scroll on the right panel
  928. * f377c14 [assist] Switch to definition-observable for the documents panel and drop the multiClick binding
  929. * b5d82f3 [home2] Add support for UUID and path url parameters
  930. * 21acdb1 [home2] Update sharing actions to use the new doc2 API
  931. * 8513672 [home2] Include borders in foreachVisible height calculations
  932. * 35945da [doc2] Make document name explicit in validation exceptions
  933. * 1c06972 [editor] Display history time column first
  934. * 4d9a172 [core] Changed custom scrollbar plugin and wired it on the new foreachVisible
  935. * c02741a [beeswax] Fix and improve fullscreen results
  936. * 01791cb [home2] Fix partially hidden new document dropdown
  937. * b9ad903 [home2] Fix folder navigation
  938. * 9b8b4e9 [beeswax] Fix assist imports for the old editor
  939. * 2d0261e [home2] Fix create folder and delete
  940. * 3438830 [doc2] Update the homepage to use the new API to list documents
  941. * 9e9bb6b [home2] Enable dragging of files to the assist documents panel
  942. * bd74c64 [assist] Change the documents panel to a list instead of a tree
  943. * 64ec0ce [home2] Initially sort the documents by name
  944. * cf18bfd [assist] Make the HDFS panel a bit lighter
  945. * d4f8753 [assist] Switch the HDFS panel to flex layout and use the foreachVisible binding
  946. * 103cb3d [core] Introduced mCustomScrollbar
  947. * e233167 [doc2] Refactor filter and pagination, and check paths after a move directory operation
  948. * e5aabb3 [doc2] Add API endpoint to get shared documents
  949. * e348d13 [doc2] Remove "all" flag from Document2Permission
  950. * ee00b3a [doc2] Change validation for same path to be restricted to directories
  951. * de23513 [doc2] Remove tags from fixtures
  952. * dcc5c57 [doc2] Apply permission checks to doc2 API and add tests
  953. * 46abde6 [doc2] Add recursive share permissions to directory and add tests
  954. * 7685d38 [doc2] Drop unused doc2 tags M2M field
  955. * ceb158d [doc2] Fix error with is_history filter (fetch when false)
  956. * 9fa6694 [doc2] Exclude history docs when fetching documents for directory
  957. * f884935 [doc2] Add validations and tests
  958. * 9b18910 [doc2] Add a get_by_uuid manager method
  959. * 4188f2a [doc2] Doc2 API and model refactor with migration for new parent FK
  960. * 330c9ab [useradmin] Do a proper redirect when editing a group or a permission
  961. * 52d0788 [search] Fix the inclusion of new dynamic fields into the main field list
  962. * 8bcc675 [home2] Add sharing status column to the document list
  963. * 2ec21f5 [home2] Switch to foreachVisible for the documents list
  964. * 456472d [home2] Store the definition in an observable
  965. * 93428c6 [assist] Fix table and database search and improve search performance of the foreachVisible binding
  966. * e78ca6a [home2] Add open action to the right-click context menu
  967. * e151e44 [core] Find the closest container for foreachVisible to
  968. * 98ea1b4 HUE-3105 [oozie] Fix workflow graph for jobs submitted from pig editor and support case sensitive tags in definition
  969. * 7c86a75 HUE-3106 [filebrowser] Add support for full paths in zip file uploads
  970. * 3c99427 [assist] Use the new spinner binding
  971. * 7d1fa3a [assist] Add the missing "Databases" header back
  972. * c638947 [core] Add ko binding for spinner
  973. * ce9935d [assist] Fix issue with overlap in the foreachVisible binding
  974. * e7f17e2 [core] Fix issue with negative index after scroll
  975. * 3bc1fff [core] Increase snappiness of displaying and hiding nested foreachVisibles
  976. * 64cb660 [sentry] Also display the action of a Solr privilege
  977. * 52a578d [sentry] Keep Hive v1 section unchanged and fix the table file link
  978. * 8c0a08e [core] Fix scroll issue with foreachVisible when close to start
  979. * 93221fd [assist] Fix positioning of nested action icons in the table tree
  980. * 0b6772a Revert "HUE-3105 [oozie] Fix workflow graph for jobs submitted from pig editor"
  981. * 4b8acdc [core] Tune performance of foreachVisible and make sure it renders after a long scroll
  982. * bf12478 [assist] Switch to flex layout and use the foreachVisible binding for databases, tables and columns
  983. * 7f80873 [core] Force foreachVisble to render on resize
  984. * 82a4a32 [core] Add disposal logic to the new foreachVisible binding to support updates of the data
  985. * 24e667d [core] Make the foreachVisible limits adjustable with parameters
  986. * 0618c0a [desktop] Remove hardcoded history filtering of the API
  987. * a911140 [metastore] Fix single drop table
  988. * 78edb4c [metastore] Removed debug info
  989. * 3ba1dcd [metastore] Improved look'n'feel of create table manually
  990. * 30b27db [editor] Fix browse and download API calls
  991. * e34f92c [core] Top menu should always point to the original Pig editor
  992. * 3a9d3ed [editor] Support executing queries on none default database
  993. * c12e8d2 [notebook] Trim out some of the long Hive session properties
  994. * 592d598 [notebook] Browsing call should use the new API format
  995. * e6b3c8f [metastore] Refresh assist after table create
  996. * 4d51800 [core] Add the foreachVisible ko binding that only renders the visible items
  997. * 510ffb3 [useradmin] Fix failing test TestUserAdmin.test_user_admin
  998. * b3b8f26 HUE-3105 [oozie] Fix workflow graph for jobs submitted from pig editor
  999. * 0b74de8 [metastore] Simplify table page listing
  1000. * 0444e43 [sentry] Removed Solr JSON dump and improve authorizable rendering
  1001. * dcea070 [core] Converted jHueHiveAutocomplete to generic with support for Solr
  1002. * 9dfa167 [sentry] Removed trailing dots from the add role form
  1003. * 7592cd5 [sentry] Introduced indexerPath
  1004. * 654988e [search] Fix absolute links to the collections
  1005. * a12a978 [sentry] Added showAuthorizable for Solr
  1006. * 227c05a HUE-3099 [useradmin] Re-order fields of new password screen to make more intuitive
  1007. * d68934f [home2] Click should never unselect an item
  1008. * c0fe4f6 [home2] Improved UX of shift+click on the entry list
  1009. * 22b4da5 [metadata] Do not strip host URL when it is not set
  1010. * efd9a9c [metadata] Add API call to upload query history
  1011. * e7516c3 [editor] Link to the new Pig editor in the menu
  1012. * ff008b1 [metadata] Add API to retrieve table details
  1013. * 9447d8c [metastore] Skeleton to prepare the introdution of the metadata frontend logic
  1014. * 2a5d744 [metadata] API to support pulling the top tables
  1015. * 3b885de [metadata] Support retrieving top tables
  1016. * 8747b7c [hadoop] Prevent Yarn API caching to tie the user to the first user calling it
  1017. * 74ab528 [metadata] Support deleting a workload
  1018. * e872568 [metadata] Support fetching status of query upload
  1019. * fbc1e81 [metadata] Upload queries in CSV format
  1020. * f55e40d [core] Support files for Multipart-encoded posts in REST lib
  1021. * 9d0e199 [metadata] Fix authenticate API
  1022. * bc0167d [notebook] Display output of Pig scripts as result
  1023. * 9cd05c1 [core] Unified the context menu shadow look
  1024. * 9bd1f42 [core] Removed clearable animation
  1025. * 2b5b259 [notebook] Fixed delete snippet dialog and execute/indent icons
  1026. * e45ac9b [editor] Added back temporary saving of query
  1027. * 28476df [home2] Add search to the UI
  1028. * b62e16ea [core] Add ko binding for toggling boolean observables on click
  1029. * b463914 [doc2] Add permissions to /desktop/api2/docs response
  1030. * 7a2c5bf Merge pull request #301 from craigminihan/patch-1
  1031. * 84a793c HUE-3103 [oozie] Add missing data to external workflow graph
  1032. * 70e5fd3 [desktop] requests should only set tls hostname if supported
  1033. * 6fed220 [editor] Enable active database selection from the assist panel
  1034. * 4d9e99b [core] Solved a bug with D3 updating the values in a previously non visible chart
  1035. * 6028e17 [core] Added global defer to chart rendering
  1036. * d58cf31 [editor] Purged html entities from charts
  1037. * 6d848b5 [home2] Show select count next to items in the right-click context menu
  1038. * 868441e [editor] Add database selection in the snippet header
  1039. * 22fa10c [home2] Right-clicking a non-selected entry will select it first
  1040. * f3b9970 [home2] Add sharing to the right-click context menu
  1041. * 9ff1df9 [home2] Require selection for delete
  1042. * 4074280 [home2] Introduce a disabled state for the action icons
  1043. * 5c4f691 [editor] Added ultra-compact result table for small windows
  1044. * 23e7144 [core] Removed wrong color on the table column fixer plugin
  1045. * fef6eff [editor] Redraw fixed headers on assist show/hide
  1046. * 00f2d5f HUE-3101 [oozie] Add decision nodes to the Actions tab in Workflow dashboard page
  1047. * 15b045c [doc2] Fix detecting duplicate directory logic
  1048. * da564e6 [doc2] Refactor documents and get_documents API pagination
  1049. * 8fa0b77 [home2] Include ctrl+key for multiple entry selection
  1050. * b22f49f [home2] Remove dependency on deleted share2.vm.js
  1051. * 472d9a3 HUE-3065 [doc2] Enables filtering, searching, offset and limit on documents
  1052. * 961d43a HUE-3102 [libsaml] Add support for private key passwords
  1053. * 1d6823f [desktop] Move coerce_password_from_script
  1054. * 1c86462 [home2] Polished UI and added initial support for floatlabels.js
  1055. * fb21cb3 [home2] Enable sharing
  1056. * 1114b45 [home2] Enable selection of documents by dragging
  1057. * da77020 [impala] Remove reference to dashboard on URLs
  1058. * a434483 [home2] Fixed pushState URL
  1059. * 84575e4 [editor] Removed invalid HTML element
  1060. * d5f3fe9 [search] Removed unused grid charts code
  1061. * c5822a9 [sentry] Fix typo in _massage_priviledge
  1062. * 2bb3b8a [optimizer] Support authenticate API
  1063. * 6b6f3f9 [optimizer] Support add_email_to_product API
  1064. * 570e2a0 sentry] Fix Hive autocomplete error on columns with API v2
  1065. * 53b3cb7 [sentry] Fix Hive autocomplete error on columns with API v1
  1066. * 556430b [sentry] Do not show impersonation with Solr
  1067. * 5647aa0 [sentry] Support deleting a Solr privilege
  1068. * c61a0bf [sentry] Display privileges from Solr component
  1069. * 63039a5 [libsentry] Workaround in API for THRIFT-3388 hash doesn't work on authorizables
  1070. * de52c19 [libsolr] Add API to list Solr Cloud configs
  1071. * 872726e [sentry] Fetch Solr collections
  1072. * 6374a71 [desktop] Support importing search dashboard format from Hue 3.7
  1073. * 75db840 [sentry] Select and highlight the correct component in the sub menu
  1074. * df0819d [metadata] Add json content type to the API
  1075. * 0b40fd9 [doc2] Add flag to enable the new editors and home pages
  1076. * 82e252e [metastore] Databases and tables filter should not show the table headers when no results are there
  1077. * d1a05fc Merge pull request #302 from antbell/fix_csv_import
  1078. * dda1512 [assist] Fixes for rendering of an initially closed left panel
  1079. * 7905e6a [assist] Unify the panel shown property
  1080. * 93030c4 Force TextFile file_format in table import
  1081. * 3bb40ed [home2] Align action icons with the breadcrumbs
  1082. * 1f6c5bf [home2] Enable drop of files on the breadcrumbs
  1083. * f46ff30 [home2] Show a spinner while loading documents
  1084. * 80df9e6 [home2] Fix issue with accessing nested folders
  1085. * 396ae85 [useradmin] Fix backwards compatibility with Python 2.6 for datetime delta total_seconds
  1086. * 1bc5e72 [dco2] Add a move a file test
  1087. * a3935dd [doc2] Add a create directory test
  1088. * 21cca5a [doc2] Update name of file when moving it
  1089. * 616bf14 [home2] Import RDBMS doc1 as doc2 and set type accordingly
  1090. * 6a95685 [useradmin] Add a session timeout that will automatically log out idle users
  1091. * b5f0b2e Merge pull request #300 from matiasjrossi/update_parquet-python
  1092. * d62a716 HUE-2659 [oozie] Workflow submitted from coordinator gets parent graph
  1093. * 72edd31 [hive] Revert to TGetSchemasReq() instead of SHOW DATABASES
  1094. * babef9d My AWS Ubuntu 14 was missing libz-dev
  1095. * 2e2d799 [core] Exclude from other apps all the apps with menu_index = -1
  1096. * 465e14d [metastore] Added current tab observable to save on rendered DOM
  1097. * 54a127d [home2] Show an error message and hide the actions on API error responses
  1098. * c8d96ed [home2] Fix incorrect path for nested directories
  1099. * 62c9087 [home2] Add support for the 'path' URL parameter
  1100. * c4add40 [metastore] Polish empty messages UX
  1101. * 21b3e12 [home2] Add droppable for moving selected files and folders into another folder
  1102. * 69e75e7 [home2] Make selected entries draggable
  1103. * b4a07c0 [home2] Fix backend Document2 move
  1104. * d394aea [rdbms] Convert decimal types to float so that they can be JSON encoded
  1105. * d6b8d9f [home2] Added empty message for empty folders
  1106. * 1fa1d37 [metastore] Got rid of legacy code
  1107. * 8d58137 [home2] Use updated API response structure
  1108. * c082995 [home2] Fix issue with empty directories
  1109. * defdd56 [metastore] Added hueach to the column list
  1110. * ffcf82b Merge upstream history from jcrobak/parquet-python as a subtree.
  1111. * fc2f008 Remove existing fork of parquet-python
  1112. * 87aa1fd [home2] Add the delete action to the file context menu
  1113. * 1250e6d [home2] Make file selection act as file selection should
  1114. * 3c9ae5f [home2] Add the download action to the file context menu
  1115. * 2bddb30 [core] Add ko context-menu binding
  1116. * c6b2f98 [metastore] Added hueach binding to the table and database list
  1117. * e1a3b52 Revert "HUE-2664 [jobbrowser] Fix fetching logs from job history server"
  1118. * 0a9c2f8 [editor] Fix end of result scrolling problems with the fixed first column
  1119. * 98d8d5c [search] Grid charts should use just the selected grid fields
  1120. * bff5a8f [core] Updated main menu responsiveness
  1121. * 76e8e7b [core] Added fixed first column to jHueTableExtender
  1122. * 5097e73 [assist] Removed extra space from column list
  1123. * 737e3e2 [doc2] Remove parent directory from the list of files
  1124. * cd2314c [home2] Enable export functionality of either current folder or selected entries
  1125. * ef0d00c [home2] Make entries selectable on click and open them on double click
  1126. * accf07d [home2] Rename HueDirectory to HueFileEntry and drop the open observable
  1127. * c1ae8c7 [home2] Add upload functionality
  1128. * f0ba9bd [home2] Enable the new document button
  1129. * 712f271 [assist] Only allow opening tables from the assist in the metastore
  1130. * c20aad2 [beeswax] Fix assist panel rendering
  1131. * 191ed4e [beeswax] Fix non re-entrant test conflicting with desktop test
  1132. * bb5dfc6 HUE-3098 [filebrowser] Avoid double-encoding files with internal mime type
  1133. * 99c9d04 [home2] Fix issue with document links
  1134. * 2c924e1 [impala] Iterate thru database generator instead of casting to list
  1135. * b704ede [notebook] Add RDBMS interface and corresponding connectors to notebook
  1136. * 65bbb1a [librdbms] Allow MySQL to accept empty password
  1137. * cc6816d [impala] Fix impala's get_databases call
  1138. * b228fc9 [home2] Enable delete of the current directory
  1139. * af45970 [home2] Enable navigation and display breadcrumb
  1140. * fbe5ab2 [home2] Add create directory functionality to the the file browser
  1141. * db6fa9f [home2] Style the file browser component and the home2 page
  1142. * 228a4a5 [home2] Create skeleton file browser ko component
  1143. * b1bcfdf [home2] Drop the old file list with pagination and switch to the new HueDirectory
  1144. * 40e2c28 [core] Add a generic representation of a directory
  1145. * ac370a6 [core] Added specific JDK version to README.md
  1146. * ce5fe95 [editor] Added basic SQL formatting capabilities
  1147. * 958d915 [doc2] Remove older get document API endpoint
  1148. * 782cabd [doc2] Prevent creating conflicting home directories
  1149. * 36553b7 [metadata] Basic skeleton on API for an SQL Optimizer
  1150. * d762bba [notebook] Remove table striping from history as too "heavy"
  1151. * 9e033f7 [doc2] Import Hive and Impala queries from document1 to document2
  1152. * ef8e68e [doc2] Utility to convert beeswax Hive queries to the new Notebook format
  1153. * 7dee863 [notebook] Utility to create a notebook
  1154. * 25468c0 [notebook] Add support for Hive UDF in the properties panel
  1155. * 7763b47 [sentry] Create a Hive privilege with API v2
  1156. * d840117 [sentry] Do no json encode the component name in API v2
  1157. * 4664631 [home2] Introduce requirejs and add the assist panel
  1158. * 30d115d [metastore] Remove extra div
  1159. * b60fc65 [assist] Switch documents to docs2 endpoint
  1160. * cbdfaf2 [core] Improve assist display of nested items after scroll
  1161. * e8b14a7 [metadata] Initial metadata API
  1162. * f2bb360 [search] Fixed grid charts defaults
  1163. * 161c2dc [editor] Added right i18n escaping to the KO labels
  1164. * 7701dcd [pig] Fix automatic support of scripts with credentials
  1165. * a3b6378 [assist] Always show the SQL assist panel for the editor and metastore
  1166. * 5821b98 [assist] Fix inner panel close button
  1167. * 90a52e3 [assist] Silence errors from the HDFS autocompleter and show the correct details from errors in the assist
  1168. * 753f581 [editor] Fix the alt-click for metastore info link
  1169. * 48aec02 [assist] Show errors in the assist panel
  1170. * 1f00416 [core] Avoid blinking on hueach scroll
  1171. * 6e5d6c5 [metastore] Disable table stats for partitioned tables and add stat labels
  1172. * 4c0c364 [core] Fix SDK commonfooter generation
  1173. * 43a398f [assist] Silence all assist helper errors from the autocompleter
  1174. * ef9933e [assist] Use the same base signature for all assist helper functions
  1175. * df1bf5b [assist] Unify error handling in the assist helper
  1176. * c0854b2 [assist] Add the header name back to the assist panels
  1177. * 2b18df6 HUE-3091 [oozie] Do not remove extra new lines from email action body
  1178. * 20c5790 [editor] Added table-striped to the history and results tables
  1179. * 76ea3a1 [assist] Introduced hueach binding for faster rendering times
  1180. * e37f523 [search] Remove deprecated chart attributes in the views
  1181. * 8cc3bf0 [metadata] Add Navigator feature to update entity properties
  1182. * 55bacc4 [metadata] Navigator delete tags functionality and added tests
  1183. * a25779e [assist] Extract individual panel types from AssistPanel
  1184. * 57e3c48 [home2] Export and import of any documents
  1185. * 333b8b0 [libsentry] Workaround iin API v1 for THRIFT-3388 hash doesn't work on set/list
  1186. * 88ce3af [security] Make both Sentry API v1 and v2 pluggable
  1187. * 91f2425 [editor] Re-label the history tooltip properly
  1188. * dd40e36 [home2] Fix deleting a directory
  1189. * db62379 [core] Do not show json data on csrf page
  1190. * ea91edf [metastore] Do not show stats and path for views
  1191. * 1d2ce91 [metastore] Rename table Properties to Details
  1192. * 98c0971 [metastore] Split table properties and stats in two
  1193. * 97c3098 [metastore] Browse data on table page should use the new editor
  1194. * 363f8ef [metastore] Remove user commenting for now
  1195. * 496f3eb [metastore] Show type of tables with icons instead of text
  1196. * 14b50fc [core] Added inline login form to the Metastore and Search apps
  1197. * 9f0064a [assist] Use fixed headers and only scroll the inner lists
  1198. * 38c4c31 [assist] Fix single panel window resize issue
  1199. * 93570bd [assist] Use proper HTML for the assist DB lists
  1200. * 6d069f5 [assist] Make the assistHelper singleton to fix caching issues
  1201. * 009ba1d HUE-3059 [oozie] Refresh Next submission column in Coordinator Dashboard
  1202. * d6f2cc7 HUE-3080 [oozie] Fix code to use oozie.processing.timezone
  1203. * 2291e8d HUE-2466 [core] MySQL should default to using InnoDB
  1204. * 4e81141 [notebook] Remove session from the list when closing even if invalid
  1205. * 04d9d96 [core] Restyled admin wizard
  1206. * 692988c [core] Increased font size for the sign in form
  1207. * cd0864b [beeswax] Fix trailing slash error for autocomplete tables
  1208. * d8aa0f6 HUE-3085 [search] Create indexer goes into an infinite loop when file has odd number of quotes in a line
  1209. * b50c7f6 [assist] Limit the initially shown database entries
  1210. * fa049ab [assist] Switch to pureComputed and various minor performance improvements
  1211. * 66b611d [assist] Sort the DB assist entries by name
  1212. * 5312ab3 [assist] Extract separate table template to increase render performance and shrink the page size
  1213. * e0e3bc7 [editor] Player icon is too large
  1214. * cc90c41 [search] Pull static fields list when /luke is not successfull
  1215. * 2bd0675 [editor] Show snippet settings below the header
  1216. * ae7c086 [assist] Keep the search icon visible when search is active
  1217. * 6677502 [metastore] Fix alignment and icon colors in table stats
  1218. * 76bdcbd [metastore] Knockoutify the properties tab
  1219. * 1285f14 [metastore] Cleanup metastore HTML
  1220. * 9e8dbd3 [metastore] Extract viewmodel into separate js file
  1221. * 8c01887 [search] Fix Search tests
  1222. * 02dda1c [assist] Add details popover to HDFS entries
  1223. * 921b657 [assist] Make sure the last opened HDFS folder exists before trying to open it
  1224. * 846b429 [search] Fixed JS errors on page reload and default values
  1225. * ded9e6b [search] Plugged in Leaflet map charts for the grid results
  1226. * ad7454e [search] Plugged in displaying Bar, Pie and Line charts for the grid results
  1227. * f22bda7 [search] Plugged in all the variables for the charts and grid displaying
  1228. * 44f79fb [search] Moved download to the side buttons
  1229. * 043e346 [search] Rename get_solr_collection to get_solr_collections appropriately
  1230. * 529ee0a [search] Diff new fields against they type too
  1231. * e2d1d60 [search] Set a default field type for each field
  1232. * 749ca4e [search] Added icons to the left
  1233. * 7361109 [assist] Remember the last opened HDFS directory
  1234. * 599c846 [assist] Don't show '..' and '.' entries in the HDFS browser
  1235. * 0145af1 [assist] Add details popover to the documents
  1236. * 04c98b7 [core] Add ko binding for bootstrap popovers that uses templates for content and title
  1237. * 062f1b5 [assist] Add the column stats icon back
  1238. * 03ade20 [core] Fix for wrong quotes on the default Leaflet conf properties
  1239. * c00a447 [core] Made Leaflet tile layer and attribution configurable
  1240. * a9c5768 [doc2] Disable permission short link for now
  1241. * 1e606be [doc2] Add missing licence files
  1242. * f63227d [doc2] Add new home page access to non super user
  1243. * b5f04fe [doc2] Clean-up new home page template
  1244. * 45890eb [doc2] Add auto UUID for the short link
  1245. * 1286388 [doc2] Add auto link UUID to the database migration
  1246. * 2a6e41b [doc2] Connect permissions to Document2
  1247. * aeb673e [doc2] Add sharing popup permission
  1248. * 01ebf63 [doc2] Integrate permissions to the document2 retrieval
  1249. * 713e62b [doc2] DB migration script for new permission table
  1250. * 4f1d059 [doc2] Schema for permissions for Document2
  1251. * 21d09f3 [assist] Added documents icons
  1252. * 1e9c2a4 [core] Updated UI of dump config page
  1253. * 04f65e9 [desktop] Fix internationalization on the footer
  1254. * a68f4ac [metadata] Add initial local files
  1255. * 68ba158 [doc2] Delete a document from the new homepage
  1256. * ae352b3 [doc2] Prevent creating duplicated directories for the same user
  1257. * 7120cfc [doc2] Support creating a directory on the new home page
  1258. * 016f773 [document] API for directories and home2
  1259. * 78d1b24 [home2] Concept of directories
  1260. * ed6fd3b [assist] Fix JS error on window resize
  1261. * 305abf3 [assist] Fix for case-sensitive fs
  1262. * 4b93057 [beeswax] Add missing js dependency to query editors
  1263. * 2b403be [desktop] Do not show json data when auth error on main login page
  1264. * fbed244 [assist] Add my documents to assist
  1265. * 466b60c [core] Upgrade Knockout to 3.4
  1266. * abe6f6b [notebook] Fix window.onbeforeunload
  1267. * dcd89a0 [notebook] Fix missing /ko tag
  1268. * b5582cf [security] Fix old URL view mapping
  1269. * 7a301e9 [sentry] Update to use the new ajax login popup
  1270. * c385027 [sentry] Add a flag to turn on the new API
  1271. * d7afffe [libsentry] First part of converting list_sentry_privileges_by_role to V2
  1272. * 6a23f26 [sentry] Convert API to always provide the component
  1273. * 42d61e4 [libsentry] Support new TListSentryPrivilegesRequest format
  1274. * bf546be [libsentry] Workaround for THRIFT-3388 hash doesn't work on set/list
  1275. * 35eb919 [libsentry] Port list_sentry_roles_by_group to V2
  1276. * bc6f814 [sentry] Create a generic sentry page
  1277. * 67bcd56 [libsentry] Mock TListSentryPrivilegesByAuthRequest that is missing
  1278. * b5ad4c7 [libsentry] Remove the old TSentryGroup, TPrivilege
  1279. * e2e9d7c [sentry] Skeleton pages for new Hive and Solr pages
  1280. * e8a8bd2 [libsentry] Add api2
  1281. * 1edaf8d [libsentry] Add new component field to client
  1282. * af6fb4a [libsentry] Add client v2
  1283. * 0e1a575 [libsentry] Regenerate API v2 sources with Thrift
  1284. * 05baddb [libsentry] Comment non needed include in Thrift file
  1285. * c1050c4 [libsentry] Add the "generic" API v2
  1286. * a8d6b69 [assist] Fix wonky positioning of horizontal scroll bar in the DB panel
  1287. * 0ad74bc [assist] Show a message when no inner panels are selected
  1288. * 2032a79 [assist] Add close button to the inner panel headers
  1289. * 1bfa9c0 [assist] Fix resizing limit issue after window resize
  1290. * c31dd16 [assist] Update all pages with assist to support the new panel layout
  1291. * 656b8f8 [beeswax] Support the improved assist panel in the old query editors
  1292. * 88813d4 [assist] Restyle the inner assist panels
  1293. * b459f99 [assist] Replace the two panel layout with the new dynamic layout
  1294. * 712989c [assist] Store panel ratios in total storage
  1295. * cec2c4a [assist] Add knockout binding for resizing of an arbitrary amount of inner assist panels
  1296. * cc2459b [home] Errors in refreshing home page project document numbers
  1297. * 0dccf37 [metadata] Add logging and navigator test
  1298. * d52b6cd [metadata] Add various get entity type methods and add_tags
  1299. * 68e9ed7 [oozie] Add request to common footer call
  1300. * 5ee2bb1 [core] Fix login tests
  1301. * 75ed206 [core] Moved login_modal to common footer and added request to it
  1302. * 4a85fc5 [metadata] Initial creation of metadata lib with navigator API module
  1303. * 09e7b6c [editor] Add Impalad address to the session popup
  1304. * cf32a7d [editor] List Hive session in the sessions list
  1305. * 0cd45f4 [editor] Fix getting the session of a Hive query
  1306. * b2693dc [desktop] Update 404 test with the new case
  1307. * d3b4469 [editor] Display player button by default to prevent the jump on page load
  1308. * eb3f452 [editor] Load back impala queries in the Impala mode of the editor
  1309. * 08358e9 [desktop] Don't capture STDERR from password scripts
  1310. * 1c568cc [notebook] Show modal login dialog in case the session is expired
  1311. * 29a3e00 [editor] Put .fromNow time displaying on the history
  1312. * 69f2432 [core] Restyle HTTP error pages
  1313. * a9ebe95 [assist] Prevent flying 'x' in database and table filters
  1314. * 25db1d4 [assist] Add filter to database list
  1315. * 49c4e71 [assist] Insert the path on drag and drop of HDFS entries
  1316. * 81eebb1 [notebook] Fix issue with properties using the incorrect attribute
  1317. * 9aa5415 [assist] Insert HDFS path on double click
  1318. * 596f8b2 [home] Load the documents through an ajax call
  1319. * d9ba2e1 [notebook] Implement close_session endpoint for hiveserver2 API
  1320. * 2ec886d [notebook] Integrate hiveserver2 create_session to actual HS2 API and get or create open session
  1321. * 72b7739 [beeswax] Update session tests and allow superuser to close any session
  1322. * 796319a [beeswax] Support getting a specific session by ID, and add a close_session API endpoint
  1323. * 52076f0 [notebook] Redact hive and impala statements on Doc2 save if redaction enabled
  1324. * f82e63d [beeswax] Closing queries/sessions should report if already closed
  1325. * ef026d1 [notebook] Change logout flow to showing a modal instead
  1326. * 121eedb [assist] Store assist panel settings in total storage
  1327. * 05fc224 [notebook] Use the assist helper in the HDFS autocompleter
  1328. * 5b76ec4 [notebook] Restyled Save as button and modal
  1329. * 160afda [assist] Maintain the ratio of the inner assist panels on window resize
  1330. * 8655a46 [beeswax] Disable HDFS in the assist
  1331. * 1844fe8 [beeswax] Fix the old query editors
  1332. * 0ea363b [metastore] Fix manual create table wizard with partitions
  1333. * c812e7a [metastore] Replace non acii char
  1334. * 869f358 [impala] Don't attempt partition sample query for Impala
  1335. * 9767c1e [metastore] Open the last opened database on the default metastore link
  1336. * 3bc097e [core] Revert login required global callback on ajax success
  1337. * 9a0ea0f [core] Refresh the login page look
  1338. * 0e40068 [metastore] Added toggleOverflow component to database params
  1339. * 44d3c7d [notebook] Added global redirect handler for ajax calls after a logout
  1340. * 8998da2 [assist] Style the assist type switch
  1341. * 22b6939 [assist] Enable browsing of HDFS in the assist
  1342. * eab9c52 [assist] Add two panel assist layout
  1343. * 303caae [assist] Add KO binding for vertical resize of assist panel panels
  1344. * e168f6c [assist] Add JS model for HDFS
  1345. * e1a5ece [assist] Make double click events DB specific
  1346. * d3dd83d [assist] Rename AssistEntry and AssistSource to AssistDbEntry and AssistDbSource
  1347. * 92b5839 [beeswax] Fix configuration view to use session configuration
  1348. * 8dd2e07 [useradmin] Make new user home dir permissions configurable
  1349. * 3d6b82a Merge pull request #282 from wilson-lauw/mysql_fix
  1350. * 9cbb64a [metastore] Added assist to the partitions page
  1351. * 509876f [metastore] Parse Hive pseudo-json parameters
  1352. * 56a6926 [metastore] Display a pretty empty tables in the database page
  1353. * 3959a3b [metastore] Delete databases.mako and tables.mako
  1354. * 7926d99 [metastore] Knockoutify the remaining action URLs
  1355. * a3ea529 [metastore] Fix column comment and clear the column cache on change
  1356. * 619265e [metastore] Fix table comment and clear the table cache on change
  1357. * 3a9e550 [metastore] Properly style the partitions and samples tables
  1358. * 0950eae [metastore] Fix the view table button
  1359. * ae45292 [metastore] Fix drop table modal for the selected table
  1360. * 1dcec8e [metastore] Add spinners to tables and databases lists
  1361. * 1711fc3 added backticks to handle database name that use reserved keyword.
  1362. * 7427e55 [notebook] Allow snippet properties files and functions to be passed from notebook
  1363. * 921b3bd [notebook] Allow snippet properties settings to be passed as Hive/Impala configuration
  1364. * 35a9a80 [notebook] Rename has_more in multiqueries to has_more_statements
  1365. * 41bfbab [notebook] Add title to status column
  1366. * 1eaf402 [editor] Close past multi queries
  1367. * fc458ad [notebook] Add query status to the history
  1368. * bf174c4 [metastore] Fixing typo in the test URLs
  1369. * 904da7d [beeswax] Redact passwords from session properties
  1370. * 95727b9 [impala] Simplify Session get_properties method
  1371. * 20b8790 [impala] Fixes impala install examples when tables exist in HMS
  1372. * fb90f9d [beeswax] Get and save configuration values for beeswax sessions
  1373. * cd94b1b [core] Avoid augmenting Spnego user if user is None
  1374. * bcf7ce6 [desktop] New workflow from New document should go to new editor
  1375. * 5323d89 [metastore] Index redirects to the default database
  1376. * c0c8bc4 [metastore] Fix table samples tab
  1377. * de90643 [metastore] Added assist to import wizard pages
  1378. * 4478458 [metastore] Fix a bunch of tests after the ajax-ification of metastore
  1379. * 06ac3a5 [editor] Support re-executing from the first statement with multi queries
  1380. * 671c7bc [editor] Unify show history logic to only be shown on a new query
  1381. * 7ed88a1 [editor] Fetch next multi query when previous query was DDL
  1382. * 1260d57 [notebook] Improve logic to refresh assist on DDL statements
  1383. * 6730f26 [notebook] Support multi queries in the editor
  1384. * 18dd99c [metastore] Show the view more option only when there are actually more
  1385. * 9d32d24 [metastore] Proof of concept on how to fix the show tables tests
  1386. * a33903b [metastore] Display the partition preview only if the table is partitioned
  1387. * 1796867 [metastore] Plug the new browse data table
  1388. * 5fac852 [metastore] Remove unused column analysis popup
  1389. * d6d666e [metastore] Change the icons of the drop buttons and get rid of the view_or_table_noun
  1390. * f8191ba [metastore] Clear the table when navigating to the databases with the breadcrumbs
  1391. * 699677a [metastore] Added assist to the create table manually page
  1392. * 08a1954 [metastore] Fixed history back and forward and unified assist open item behavior
  1393. * ce82f94 [metastore] Add refresh icon on top of metastore page
  1394. * 9dbe56a [metastore] Refresh the metastore contents on assist.refresh
  1395. * f2901f2 [metastore] Remove debug link
  1396. * 644037a [metastore] Added database stats to the view
  1397. * 9f292be [metastore] Fix for drop table modal
  1398. * e4ea696 [assist] Publish refresh event instead of reload when clicking refresh
  1399. * b5899d0 [metastore] Knockoutify drop table modal
  1400. * b278488 [metastore] Wire in database stats call
  1401. * 3240e60 [metastore] Remove unused table comment variable
  1402. * 369ba8b [metastore] Changed import data icon
  1403. * 7a09c7e [metastore] Knockoutify table partitions
  1404. * b14084d [metastore] Ajaxify loading of the partitions
  1405. * 55934a7 [metastore] Fix stats refresh icon
  1406. * b92c213 [metastore] Knockoutify partition_keys in actions
  1407. * 943b870 [metastore] Started URL override
  1408. * 881e579 [metastore] Show a message when no tables or databases are found
  1409. * 2787166 [metastore] Fix table stats in tables list
  1410. * 31ca2a0 [metastore] Add shift-click support to tables and databases table
  1411. * 85333c3 [metastore] Knockoutify the database action
  1412. * e502dca [metastore] Knockoutify the table actions
  1413. * 5496259 [core] Add ko bindings for the Hue checkbox and the check all checkbox
  1414. * 3b7789f [metastore] Support for loading the correct view on page load and back button
  1415. * db0fc3e [metastore] Removed breadcrumb last '>' for tables/databases
  1416. * 46f7331 [metastore] Focus on the overview tab on setTable
  1417. * 5a957f8 [metastore] Added changeURL to HueUtils and enabled history pushState
  1418. * d507c87 [metastore] Knockoutify database search and style the database actions
  1419. * f112060 [metastore] Style the tables actions and increase the space between actions
  1420. * b028a52 [metastore] Knockoutify table search and add comment matching
  1421. * 0a5f961 [metastore] Fix I18n for tables and databases lists
  1422. * edcd445 [metastore] Set database and table from assist panel
  1423. * ad5bba9 [metastore] Combine tables list, databases lists and table details into one page
  1424. * b8b07d5 [notebook] Implement Save As functionality
  1425. * 6711099 [notebook] Put back the sessions button in editor or notebook mode
  1426. * 6a61942 [editor] Add proper links to New buttons in the editor
  1427. * d035eda [notebook] Reload history query on click and refreshes the page for now
  1428. * 21aeec1 [notebook] Always show play button in blue in Editor mode
  1429. * 60ad717 [home] Refactor tests to easily check for duplicate tag creation
  1430. * 4b26728 [notebook] Offer to view the data of a table and scroll
  1431. * ea52cea [assist] Add table and view facets to search
  1432. * d5d8553 [editor] Rename _n to notebook
  1433. * 5f9e9be [core] Indent and simplify checking logic of new tag creation
  1434. * abd18d8 [core] Prevent creating a project with an empty or already existing name
  1435. * db8057d [livy] Allow to configure the Total Executor Cores in standalone mode
  1436. * 8bef981 [oozie] Trim left slash in coordinator application URI of a bundle job
  1437. * 6335c5e [beeswax] Add error_handler to sample, indexes, and functions endpoints
  1438. * f7f0c3c [beeswax] Implement get_functions API endpoint
  1439. * 1dd5022 [oozie] Some job statuses are not included in the dashboard
  1440. * 4e8ddce [spark] Add Executors Memory when choosing a property during recreate session
  1441. * 80e1a51 [fb] Reset file name input before opening the create new file pop-up
  1442. * d8f3e5e [notebook] Remove all flag to enable the assist
  1443. * 80b9dde [notebook] Add a query expired message
  1444. * 1e0b0a3 [notebook] Restart polling for query status if snippet was in running state
  1445. * a6689c2 [notebook] Unify the icon bar with Editor
  1446. * 75b7b29 HUE-2949 [notebook] Fix HS2 progress API by sending back full logs with each request
  1447. * f5f6eb2 [beeswax] Add get_indexes API endpoint
  1448. * 03ca1fd [assist] Show a message when the filter results in no entries
  1449. * 6cf5960 [editor] Fix the "sticky" dark blue link color on some actions
  1450. * 21f205c [metastore] Restyle the upper right table actions
  1451. * bb174ba [notebook] Fix missing snippet header
  1452. * b4318b4 [editor] Allow selection from the history without replacing the current query
  1453. * 9754876 [beeswax] Fix ANALYZE TABLE call for partitioned tables and raise error on COMPUTE..FOR COLUMNS
  1454. * 8bc0076 HUE-2284 [impala] Provide Impala Thrift API implementation of GetRuntimeProfile
  1455. * 4616a74 [impala] get_exec_summary error handling for closed/invalid query handles
  1456. * 7494aa4 HUE-2284 [impala] Provide Impala Thrift API implementation of GetExecSummary
  1457. * 23fec5b [impala] Update sample data test to not have the DB prefix in the headers
  1458. * 49387ae [impala] Table samples should be queried with Impala
  1459. * fff59ed [metastore] Update the logic to be able to fetch more recent partitions
  1460. * f565baf [metastore] Change file location icon to disk
  1461. * fce33b3 [metastore] Improve UX of list of partition values on table page
  1462. * 63d3267 [hive] Escape column names to work with stats reading
  1463. * bde2f0b [hive] Unify the limit of listed partitions and the limit of partitions in SELECT queries
  1464. * 18d04f9 [oozie] Fix running a single workflow action for fork node
  1465. * e234252 [editor] Drop exact match for SQL autocomplete
  1466. * 7e7006f [editor] Show autocomplete after space
  1467. * 434781f [assist] Style the message for no tables or columns
  1468. * fc834ce [assist] Fix the background colour of the column terms count
  1469. * 0251fc6 [editor] Only pan the results grid when the alt-key is down
  1470. * b89222c [editor] Disable adding of a new snippet when double-clicking the empty header
  1471. * 70b51c0 [impala] Move get_sample logic back into HiveServer2Dbms
  1472. * bc58363 [desktop] Override default tmp directory with workspace directory to avoid space issues
  1473. * 03971ea Merge pull request #263 from shobull/master
  1474. * 07b78f6 Update rest.py - set default http header to accept "application/json"
  1475. * e7a390b [impala] Initial implementation of Impala Thrift service
  1476. * 796adb6 [assist] Add the table comment to the title of table entries
  1477. * 3776c76 [editor] Switch to table meta endpoint for sql autocomplete
  1478. * 631a681 [impala] Allow invalidate to accept optional database param to enable DB refresh
  1479. * 081258b [impala] Use beeswax API error_handler decorator for impala API methods
  1480. * 638b4d3 HUE-3078 [impala] Implement Impala Invalidate Metadata and Refresh
  1481. * 2a8b97c [oozie] Add test for Java action XML generation
  1482. * 7f65df2 [core] Add lxml 3.3
  1483. * d432b77 [core] Remove lxml 3.4
  1484. * cb51411 [hive] Remove list of table names in the autocomplete API
  1485. * d65a300 [editor] Always show the snippet actions in editor mode
  1486. * 11c6ffa [editor] Disable the execute button when the statement is empty instead of hiding it
  1487. * de34cef [assist] Don't wrap long column names to a new line after the icon
  1488. * 4833882 [assist] Preserve white space in table sample columns
  1489. * 107bb36 [assist] Set focus on search when opened and make search clearable
  1490. * 6f2e3fc [hive] Save one call to the metastore for the table autocomplete
  1491. * f6138e9 [hive] Fix create table with timestamp test to look to new sample data
  1492. * 71f3389 [useradmin] On batch LDAP user import, validate first_name and last_name, log warning and continue
  1493. * 92f3868 [assist] List columns of a view
  1494. * d6a1467 [hive] Fix escaping of table samples
  1495. * c90d0b0 [hive] Fix create table test to now look at json data for the samples
  1496. * 5b93b05 [metastore] Add spinner to samples and move loading into samples object
  1497. * d961b51 [metastore] Fix samples table for views and show a message when there's no data
  1498. * d21261c [metastore] Fix stats for views
  1499. * 823d0a6 [assist] Fix table sample for views
  1500. * 0d9544e [assist] Disable stat refresh for table views
  1501. * bc2be63 [editor] Fix infinite scroll for single editor mode
  1502. * 9c9aba7 [editor] Moved hueDebug to the require common file
  1503. * f6d024f [metastore] Added assist to create database
  1504. * cedf268 [assist] Fix column listing
  1505. * c6d9573 [assist] Rename "tables + views" to just "tables"
  1506. * 1d5c2bf [metastore] Convert the partition test to check on the partition page
  1507. * b1ed816 [notebook] Add a flag to show the latest editors
  1508. * 9f81d4c [metastore] Display partition values when available on table page
  1509. * b7ea99e [notebook] Add code formatting to the latest execute all snippets function
  1510. * 5c30497 [notebook] Add all snippets execute function
  1511. * 03d95bd [search] Unicode cast hueId field and fix search test
  1512. * 1cacfa8 [metastore] Add assist to the database and tables page
  1513. * 207b12b [assist] Differentiate tables and views
  1514. * b9babf4 [editor] Fix column scroller and column toggle for the results
  1515. * 0827a48 [editor] Fixed save URL, changed from hashtag to pushstate
  1516. * 31d4d25 [editor] Improved history UX
  1517. * 392f833 [core] Updated FontAwesome to 4.5
  1518. * 3aace14 [core] The DataTables sorting icons are now on the right of the field
  1519. * 9e294520 [editor] Delete references to CodeMirror
  1520. * 55ba440 [editor] Improved usability with mouse use of the results
  1521. * 0b69174 [editor] Fix for null selected database
  1522. * dde51db [core] AceEditor now updates the snippet statement on change
  1523. * b73bc43 [metastore] Open database from Assist
  1524. * e78c58d [assist] KO'ified the samples table
  1525. * ea38937 [core] Added tables meta to the Hive autocomplete
  1526. * ccc1f90 [search] Support fetching a document when searching by id
  1527. * 2fba6b4 [search] Flatten highlighting if there is only one chunk
  1528. * 3817a2c [desktop] Skeleton for the new home page
  1529. * dfc53f8 [notebook] Historify the snippet with the good query handle
  1530. * 35bd055 [impala] Restore TestImpalaDbms test class
  1531. * bd39fa8 [impala] Fix get sample test
  1532. * e89da22 [impala] Refactor Impala API and DBMS query server out of beeswax
  1533. * b991026 [metastore] Add some missed i18n in the ko templates
  1534. * 6fdb07d [search] Support bar widget on the time filter
  1535. * 762fcde [beeswax] Update tests for new get_sample_data API endpoint
  1536. * c012003 [metastore] Add separate get_sample_data API endpoint and fix metastore tests
  1537. * 040d730 [metastore] Better error handling for missed stats calls
  1538. * e0181b9 [core] Avoid RequireJS caching if django_debug_mode=true
  1539. * d0e6f7a [metastore] Fix table/column terms call
  1540. * 472dd3c [editor] Disable execute in case of empty statement
  1541. * 4f5ed9c [metastore] Remove unused imported config from metastore tests
  1542. * 8787f6e [metastore] Add more database metadata
  1543. * 0cc5a9af [hive] Update the create table test to check for the result json
  1544. * 0f4d582 [metastore] Remove the now non used static variables of the describe page
  1545. * e89caf5 [metastore] Revert to use GetSchemas() for the list of tables
  1546. * cc4f665 [notebook] Do not show history when empty
  1547. * e9314b6 [editor] Better history icon and empty history message
  1548. * f37d17d [notebook] Implement the clear history backend
  1549. * c7b651e [metastore] Extract database and table into separate objects
  1550. * aeb229d [metastore] Add arrow icon with event to database list in the assist
  1551. * 0dff589 [metastore] Use ko for the breadcrumb
  1552. * c1a27b9 [metastore] Set the active table from the assist panel
  1553. * 0657ce7 [assist] Improve display of stats popover
  1554. * 5402594 [editor] Put the id of the notebook in the URL when executing
  1555. * fd29185 [notebook] Have new snippets ask the assist for the selected database
  1556. * 977cf9f [assist] Make assist event names less ambiguous
  1557. * 663f8ab [metastore] Fixed column stats calls
  1558. * 50bc21b [metastore] Fix issue with load order for the ko.hue-bindings
  1559. * 94709d6 [assist] Fix the spinner for the table tree
  1560. * 2af89cb [editor] Change auto-resize of editor to add 4 new lines instead of 8
  1561. * ac280bf [core] Lighten up all the other apps to make it similar to the new editor
  1562. * 0d8ba1a [editor] Added clear history UI
  1563. * 31effa8 [metastore] Add refresh of stats to the table details
  1564. * bee3850 [metastore] Use ko for table details and stats
  1565. * ef27a54 [metastore] Re-organize the table stat panel
  1566. * 6492385 [notebook] Do not display history notebook in the top menu
  1567. * e66d18d [metastore] Add extra table fields to the json table call
  1568. * 0cae7af [useradmin] Permission to view the user profile of another user:
  1569. * e24794a [metastore] Use ko for table samples
  1570. * 301324c [assist] Support json and html response type when fetching table samples
  1571. * d933519 [metastore] Only return table sample when asked for it
  1572. * cc14254 [useradmin] Add a view user page
  1573. * a5fcf38 [metastore] Wired in queries tab
  1574. * 6908f0c [metastore] Fix the indentation of the decribe table view
  1575. * 9841a6b [metastore] Change starred columns title on overview
  1576. * d876999 [metastore] Get table properties date as json
  1577. * 5d5a2d2 [core] Use define instead of require for the assist panel and table stats
  1578. * c0fe773 [oozie] Improve email on error checkbox
  1579. * 793f35b [metastore] Offer the get sample API as json
  1580. * a29a54a [metastore] Add editable table description
  1581. * 3f08b74 [metastore] Add column counter
  1582. * 8ad3adc [metastore] Do not show comments in the partition table
  1583. * eb43a41 [metastore] Clear assist helper cache for columns when column comment is changed
  1584. * 2b4027c [metastore] Add links to view more tabs
  1585. * 3eea297 [metastore] Keep the table stats link blue
  1586. * e6352ce [metastore] Add favourite toggle to columns
  1587. * ba38a27 [metastore] Use in-place editing for column comments
  1588. * 1a1338b [metastore] Add all the query information to the table queries call
  1589. * 971514d [metastore] Fix alter table and column URL patterns and fix alter_column test
  1590. * 0ed77be [metastore] Added navigation settings to the assist and openItem functionality
  1591. * 3c49bda [notebook] Update Sample Notebook to use updated sample files
  1592. * 335af43 [beeswax] Add web_logs_partitioned sample
  1593. * 6447fdc [metastore] Provide the partition keys of a table in json
  1594. * eacdfb2 [metastore] Use the new table stats for the columns table
  1595. * 2edc865 [metastore] Use the viewmodel columns for the columns tab
  1596. * 85aaa6b [metastore] Use knockout for columns
  1597. * 20759b1 HUE-3073 [metastore] Add ability to alter table name and comment
  1598. * d2974f2 [metastore] Add json options to the get table partition ajax call
  1599. * b33a3eb [metastore] Support for assist selected CSS class
  1600. * 3957227 [metastore] Updated UI of the tiles
  1601. * 6eb3945 [metastore] Remove old assist.js
  1602. * 228e774 [metastore] Set the comment of a column to a new value
  1603. * b1528b5 [metastore] Switch alter column API to get column name from POST data
  1604. * 3812d3b [assist] Fix table preview for Hive
  1605. * 62be029 [beeswax] Use the new assist events for db initialization
  1606. * 77daaf0 [assist] Fix caching of selected source and database
  1607. * db46cf8 [metastore] Add empty sections for the non available yet tabs
  1608. * bb6a8de [core] Remove some non needed files from the root
  1609. * 1bee0a3 HUE-1961 [metastore] Add ability to alter column name, type, comment
  1610. * 4787ec8 [filebrowser] Switch to else instead of return in xxd test
  1611. * 24bfed2 [filebrowser] Update xxd_test to not fail for different offset lengths
  1612. * b35b71a [metastore] Updated assist panel to use the new ko component
  1613. * 175e8fd [editor] Include source type in calls to API from table stats
  1614. * ff40081 [metastore] Put back breadcrumbs with icon
  1615. * c6e0822 [editor] Adjust autocomplete to use new assist helper
  1616. * 85435c1 [assist] Use pubsub for communication between assist panel and the notebook
  1617. * 573b2d3 [assist] Remove assist dependency on notebook and snippets
  1618. * 9690149 [metastore] Adding a related queries tab on table page
  1619. * 26e2d71 [metastore] Updated look and feel of the overview page
  1620. * 08acab4 [metastore] Moved icons to top right
  1621. * 0f552be [editor] Lightened up the main workspace
  1622. * b134348 [metastore] Updated style of the basic page structure
  1623. * 17845d6 [metastore] Added assist panel
  1624. * 580d33e [editor] Fix assist loading rendering of tables and spinner
  1625. * 76fdf1d [metastore] Add a permission tab
  1626. * cb65651 [metastore] Display a preview of the table partitions
  1627. * 8967eb4 [metastore] Display more table metadata on the table page
  1628. * 8d7df07 [metastore] skeleton of the revamp of the table page
  1629. * 7ae135e [editor] Fixed display of success, loading and 0 results messages
  1630. * 7a290ed [assist] Close table stats when clicking outside the popover
  1631. * 0014b99 [assist] Extract table stats to separate component
  1632. * 81a15c3 [editor] Fixed history bug for older editors
  1633. * e054e92 [assist] Refresh assist entries on 'assist.refresh' event
  1634. * 464248c [assist] Add reload function to databases and tables list
  1635. * 9ee775f [editor] Wire up the history fetching in the UI
  1636. * 6750d63 [hive] Fix computation of table statistics button
  1637. * f6bac4b [assist] Style the assist breadcrumb
  1638. * f91b3c6 [assist] Use breadcrumb for source and database selection
  1639. * 2bce5d1 [assist] Extract databases and sources into separate ko templates
  1640. * 6028206 [assist] Extract assist panel into separate mako file
  1641. * 7eaa3f0 [assist] Pass i18n strings to js modules where needed
  1642. * e7caed6 [assist] Extract assist modules into desktop/js/assist
  1643. * 186dcdd [notebook] Add MySql autocomplete
  1644. * 8f381b0 [notebook] Add select operation to the mysql connector
  1645. * b26de13 [jobsub] Fix cloning a design
  1646. * 63396db [editor] Connect editor type with the right name
  1647. * eb22d45 [beeswax] Make history test pass when running everything
  1648. * b2e7c04 [editor] Publish assist refresh event in case of a SQL ALTER, DROP or CREATE
  1649. * 452ce9c HUE-3054 [useradmin] Raise a popup notification if any exceptions were encountered on batch LDAP import/sync
  1650. * 10496e3 [jobsub] Clarify that action properties are for Hadoop only
  1651. * 2a3e711 [core] Updated and merged Ace Editor 1.2.2
  1652. * 808cf4b [editor] Make the editor gutter width smaller
  1653. * 860ed80 HUE-2734 [oozie] Refresh arrows of decision nodes
  1654. * b79c254 [editor] Fix size and blinking of the player button
  1655. * 54aae7a [editor] Support for SQL file drop
  1656. * 4933a9b [editor] Provide more information in the history
  1657. * 78c657d [editor] Expand * to all table columns with alt/ctrl+click
  1658. * 0ea3995 [editor] Autoresize the editor in increments of 8 lines if not manually resized
  1659. * 7afde03 [editor] Make the code editor resizable
  1660. * 9c3e818 [notebook] Open queries directly from the notebook page
  1661. * 0c22de3 [notebook] Add a notebook and editor type
  1662. * 5d9ec3b [editor] Add links to the new editors
  1663. * 35ef96a [editor] Add link to new Hive editor
  1664. * c127eb3 [notebook] Do not display the history documents
  1665. * a206abf [notebook] Add history to single snippet mode
  1666. * 062a46f [editor] Better progress bar colors
  1667. * e3eff3b [editor] Restore notebook open call
  1668. * ab7d2c5 [editor] Avoid result scrolling on single snippet editor
  1669. * 1159515 [editor] Fixed saving messages for the query editor
  1670. * 8034137 [editor] Switched top bar for single snippet mode
  1671. * 93980a6 [editor] Set min height of code editor to 8 lines
  1672. * 0413a95 [editor] Fix the save url parameter for the editor
  1673. * efd310f [notebook] Drop the code visibility toggle
  1674. * 64fc1b5 [editor] Remove name header and other snippet controls
  1675. * 8fdf151 [editor] Add line numbers to the code editor
  1676. * ae09fb5 [notebook] Add horizontal separator between snippets
  1677. * 1e6ce51 [notebook] Change default name of untitled snippet to "My Snippet"
  1678. * de9afbe [editor] Fix issue with editable placeholder
  1679. * a0d5f81 [beeswax] Improve UX of clear query history
  1680. * 74fa6f8 [hive] Display each history row on one line
  1681. * 1900f46 [core] Add the "USE" keyword to the Hive highlight rules for the Ace editor
  1682. * de708b8 [core] Add HDFS autocomplete to Impala statements
  1683. * 04d9412 [beeswax] Add test to check for recent query history cleaning
  1684. * 2cc394e HUE-2963 [beeswax] Allow the user to be able to clear the recent queries table
  1685. * 628bec1 HUE-3063 [pig] Fix for syntax highlight mistake around /* */
  1686. * b82bb84 [tools] Fixed Dockerfile for Hue and added VOLUME declaration
  1687. * 3eb0f03 [core] Add HDFS autocomplete to Hive statements
  1688. * 60fe180 [notebook] Move focus to the ace editor after switching snippet type
  1689. * 5038f88 [core] Only include "[]" when inserting complex types from the assist panel for Hive
  1690. * 1682087 HUE-1959 [core] Include database references in SQL autocomplete suggestions
  1691. * 83fa44b [core] Adjust autocomplete tests to also check for the correct order of the suggestions
  1692. * 3fb1e70 [core] Autocomplete databases after the USE keyword
  1693. * b884fc1 [core] Make the SQL autocompleter aware of any USE statements before the cursor
  1694. * 9bc3653 [hadoop] Support HA for checkconfig YARN check
  1695. * 00005d6 HUE-3056 [core] Refactor audit logging to enable each view action to specify log parameters
  1696. * 3618f09 HUE-3049 [useradmin] Change errors in validation functions from AssertionError to ValidationError
  1697. * a15ed00 [tools] Update Docker instuction to for getting the correct IP
  1698. * ef9a53a [beeswax] Double click on Assist with an empty editor creates an automagic SELECT LIMIT
  1699. * cfdbebd [core] Fix default values for SAML user_attribute_mapping
  1700. * ab5a684 [tools] Fixed Livy Dockerfile
  1701. * 28fe0e7 [beeswax] Browse Data and all other calls to select_star should use optimized partition query
  1702. * 1915841 [tools] Added Dockerfile for Livy
  1703. * a029f36 [notebook][beeswax] Add table counter to the assist
  1704. * ad1a2d5 [livy] Add documentation on building Livy with other Spark versions
  1705. * beac43b [livy] Remove reference to non-existing config option
  1706. * e0f40d6 [livy] Stop printing out the repl output
  1707. * 5c2ba1f HUE-3025 and HUE-3055 [livy] Support Spark 1.4, and fix pyFiles support
  1708. * 58b1249 [livy] Fix warnings in fake_shell.py
  1709. * a494127 [livy] Fix %table-izing dictionaries
  1710. * a373086 [livy] Fix some minor warnings
  1711. * d174121 [livy] Cleanup imports
  1712. * 30986a7 [livy] Update README to describe spark config
  1713. * e56e54e [livy] bin/livy-repl should try to use the SPARK_HOME spark-submit
  1714. * 3228645 [beeswax] Set HS2 logging to verbose to get job info
  1715. * 153824e [notebook] Move snippet type switch to left bar
  1716. * c3b4d2c [notebook] Extend click-to-focus area of a snippet
  1717. * 169bcf3 HUE-2496 [fb] Move the content summary button to the action/context menu
  1718. * 3e88c88 [notebook] Remove result headers on widget type switch
  1719. * d77bac9 [tools] Extended description for the Docker readme
  1720. * 63390d9 [hadoop] Make YARN HA config easier to configure
  1721. * d277357 [core] Fix jHueNotify positioning after page scroll
  1722. * f9e1938 HUE-2996 [oozie] Prettify submission history on workflow
  1723. * c6bda77 [notebook] Don't automatically add a new snippet after execution of SQL type snippets
  1724. * 99f24ef [core] Automatically open map values and array items in the assist panel
  1725. * 069f156 [notebook] Keep execution controls greyed when active
  1726. * 68d9818 [livy] Allow the server url to be manually specified
  1727. * 7289799 [livy] Fix LIVY_REPL_JAVA_OPTS for yarn mode
  1728. * af01a43 HUE-3046 [livy] Pass the callback url and port through a config variable
  1729. * 6849e71 [core] Add auth and ldap configs and default values to ini templates
  1730. * 2dc79c5 [beeswax] Pass in tableTypes to GetTables HS2 call
  1731. * 4b23fc6 HUE-3036 [beeswax] Revert get_tables to use Thrift API GetTables
  1732. * fab0407 [core] Only audit valid/successful or unauthorized operations.
  1733. * 75beea7 [oozie] Offer action retry on all the actions
  1734. * d03a532 [core] Add nt_domain configuration to ini templates
  1735. * a564683 [oozie] Fix creating a new workflow where we used to look for a document
  1736. * 6c32b5a HUE-2997 [oozie] Easier usage of email action when workflow fails
  1737. * af4d6be [oozie] Fix dashboard display of a workflow having a killed node
  1738. * b99c29e [oozie] Provide the cause of the submission error to the user
  1739. * 53b723b [tools] Fix syntax with latest rbt tool for specifying the bug to close
  1740. * 37df771 HUE-3024 [oozie] Add Generic action to the workflow editor
  1741. * d8d8e3b HUE-2496 [fb] Show content summary in the UI
  1742. * de7a034 HUE-2496 [fb] API to fetch the content summary of a path
  1743. * aef2fea HUE-2996 [oozie] Add back editor submission history
  1744. * b8ab65d [libsaml] Add support for an explicit saml response base url
  1745. * db95f49 [core] Initial support for Docker
  1746. * 3735c2c [oozie] Support shift-click for selecting multiple table items
  1747. * 996ee53 [aws] Add internationalization files
  1748. * f73e743 [notebook] Fix log panel margin and place it between the code and results
  1749. * 74d6ee7 [notebook] Fix snippet code visibility toggle
  1750. * c09ac96 [notebook] Increase left and right margins for progress and errors
  1751. * a6860d5 [notebook] Fix issue with bar chart label positioning
  1752. * 1706959 [notebook] Increase the right margin of the snippets
  1753. * eca56ff [notebook] Move result related actions to the left of the results panel
  1754. * 5832cd1 [notebook] Fix issue with charts filling the page right after notebook load
  1755. * ed1abea [notebook] Extract templates for chart and graph results
  1756. * d257e39 [notebook] Move execution timer to upper right corner
  1757. * 81f1c2e [notebook] Move snippet execution controls to the left of the snippet contents
  1758. * 8c39c41 [notebook] Extract templates for snippet execution and result controls
  1759. * bbaec8d [useradmin] Fix typo
  1760. * c74f64f [useradmin] LDAP group sync: Do not fail when members exist outside of current domain
  1761. * 63c0550 [beeswax] Increase wait-time for create/insert partition table
  1762. * a4659f3 HUE-3018 [livy] Add support for whitelisting spark config options
  1763. * 08786ef [livy] Convert some builder options to generate the spark.* options
  1764. * 7e1d990 [livy] Move SparkProcess* into livy-spark
  1765. * 875c604 [livy] Minor cleanup
  1766. * e091dfb [livy] Create a SparkManager
  1767. * 04b9051 [livy] Move SessionManager into livy-core
  1768. * 539d0ad [livy] Create a SparkProcessBuilderFactory
  1769. * 606aef9 [livy] Convert construtors into "apply" methods
  1770. * 7584785 [livy] Rename SparkSubmitProcessBuilder to SparkProcessBuilder
  1771. * 65b3acb [livy] Move spark classes out of livy-server into livy-spark
  1772. * 967a0a1 [beeswax] Allow create table queries in tests to finish
  1773. * 82f145a [core] Added 'done' button to the admin wizard
  1774. * 12fd5a7 [beeswax][impala] Disable DataTable plugin for modal samples of tables with more than 1000 columns
  1775. * 3e30843 [metastore] Disable DataTable plugin for tables with more than 1000 columns
  1776. * 65cda65 [metastore] Support displaying table with 10000 columns
  1777. * cfc6d16 [impala] Add an idle session configurable timeout
  1778. * 77b84c1 [hive] Close previous query when doing multi-query
  1779. * 67c7233 [hbase] Add a config check for missing Thrift server or misconfiguration
  1780. * ad44fb8 [core] Pad dropped assist text with spaces if it's dropped in or next to a word
  1781. * 2877875 [oozie] Load the ko.hue-bindings from the main pages
  1782. * 7e1a6ad [notebook] Fix snippet settings positioning
  1783. * 410a570 [beeswax] Add codemirror support for DnD from assist panel
  1784. * a54655e [notebook] Support dragging of items from assist panel to the editors
  1785. * dd07155 [notebook] Fix result table header offset issue
  1786. * 6835235 [notebook] Move snippet result download functionality to a separate component
  1787. * 1d72300 [notebook] Move jupyter export into notebook view model
  1788. * 113ec3c [livy] Fix compiling the livy-core-test module
  1789. * 4eea639 [livy] Move SessionFactory into livy-core
  1790. * 2f06395 [livy] Move {,Batch,Interactive}Session into livy-core
  1791. * a7f35e9 [livy] Move livy-yarn Job and ApplicationState into their own files
  1792. * 38eb953 [livy] Move session state variants into it's own namespace
  1793. * 4bd9193 [livy] Import cleanup
  1794. * 58e4379 [livy] Rename package from the old "batches" name to "batch"
  1795. * 0fbc0c6 [livy] Optimize the livy-server maven dependencies
  1796. * e2fd5f6 [livy] Optimize the livy-yarn maven dependencies
  1797. * 3ef94d0 [livy] Optimize the livy-repl maven dependencies
  1798. * ea11bff [livy] Optimize the livy-core maven dependencies
  1799. * 74e531a [livy] Stop shading all of the modules
  1800. * 46d8c3a [livy] Make sure jetty jars end up in the archive
  1801. * e352575 [livy] Cleanup of maven and bump some versions
  1802. * 3b76bb4 [livy] Fix indentation
  1803. * fae3037 [livy] Support Spark 1.5.1
  1804. * fd50893 [livy] Set scala.compat.version
  1805. * 787c328 HUE-3035 [beeswax] Optimize sample data query for partitioned tables
  1806. * abb8105 HUE-2974 [oozie] Submit single action from Workflow editor
  1807. * dd49485 [search] Align correctly text facet counters in right to left languages
  1808. * c9145cd [libsolr] Force non UTF-8 encoding error when clicking on text facet
  1809. * 672da83 [search] Fix problem with removing filter
  1810. * 760e6f2 [notebook] Show actions when snippet is in focus
  1811. * bc6db6c [notebook] Switch to JS for toggling visibility of actions on hover
  1812. * 94a52e2 [notebook] Fix CSV/XLS download of results
  1813. * 1071cfc [notebook] Decrease the space between editor and results
  1814. * 9a7b0d0 [notebook] Fix JS error on Boostrap modal for Import Github
  1815. * 4cebad9 [spark] Support adding files on batch jar
  1816. * 488f83c [beeswax] Recreate customers parquet data table for compatibility
  1817. * 01926a2 HUE-3039 [livy] Enable support for SSL
  1818. * 41bed0b [livy] Add option for configuring the scalatra environment
  1819. * 5d9be7b [core] Updated README format
  1820. * 6ad46ba [notebook] Initial support for export to Jupyter and icon regrouping
  1821. * 9dac1aa [notebook] Added markdown to base connectors
  1822. * f3adbb7 [core] Fix assist table data sample preview
  1823. * 930713c [livy] Add HADOOP_CONF_DIR in the README
  1824. * 6ea0094 [notebook] Support for switching snippet type with %type on the first line
  1825. * 72fa7d8 [notebook] Support a default list of snippets
  1826. * d2fa51f [oozie] Add more logging when job submissions fail
  1827. * 74559e2 [notebook] Show snippet title on hover
  1828. * bee6a98 [notebook] Prevent flickering of snippet logs and status for slow browsers
  1829. * 2cd9e99 [notebook] Fix loading order problems with ko Charts
  1830. * df179dc [notebook] Load asyncronously MathJax
  1831. * da135b7 [core] Support sql autocomplete after "group by"
  1832. * 7b22eed [core] Fix pre-selection issue with the select2 binding
  1833. * 64d5baa [core] Support value sample autocomplete for nested structs in complex types
  1834. * 4934f17 [notebook] Don't auto-trigger hdfs autocomplete for URIs with schema references
  1835. * 6e7f8dc [notebook] Show snippet header on hover
  1836. * 2610f19 [notebook] Show the header row for text snippets outside edit mode
  1837. * 735782f HUE-3033 [impala] Editor doesn't support "Big Query in HDFS" option
  1838. * 6d81dc9 [notebook] Fix regex for github owner pattern
  1839. * 2e9ec74 [notebook] Github config i18n of help text
  1840. * aa6f988 [core] Move default configurations for github to notebook top-level
  1841. * 0e85236 [notebook] Avoid extra new lines on external notebooks import
  1842. * 2c18d0c [notebook] Include Github oAuth flow in the UI
  1843. * 7009b3e [notebook] Add ability to authorize Github and provide authenticated access
  1844. * d35f6c8 [notebook] Update github_fetch handling and GithubClient
  1845. * 9579247 [notebook] Plugged in Github import in the UI
  1846. * 98784ed [notebook] Provides a Github API client to fetch file contents for file in a public Github repo
  1847. * 15a25d9 [notebook] Fix problem with the Ace editor autofocus
  1848. * bea01b0 [notebook] Only initialize databases for sql type snippets
  1849. * d2ad0c3 [beeswax] Improve save form error handling
  1850. * 1fcf7b1 [core] Collapse JB, FB and other right menu items under 1290 pixels
  1851. * c6a926e [core] Fix table and column stats in the assist panel
  1852. * 66302ac [spark] Add documentation for setting the application name
  1853. * 845b037 [livy] Support for setting the application name
  1854. * 97eea30 [spark] Document how to specify a queue in YARN mode
  1855. * ad171f1 [oozie] Bump the workflow sumbit timeout in the tests
  1856. * 7bab221 [impala] Move specific nested column logic to impala lib
  1857. * d7ecb07 [core] Autocomplete values in Impala statement conditions
  1858. * 0fb5dbf HUE-2958 [impala] Autocomplete sample of values for scalar columns and nested types
  1859. * 77316d8 HUE-2969 [oozie] Support shared workflows in coordinator
  1860. * c715feb HUE-2527 [beeswax] Allow 5000 columns in XLS downloads
  1861. * f846f0d HUE-3026 [beeswax] Backend should pass save form errors to frontend
  1862. * fbb2dff [metastore] Fix metastore tests by removing test_drop_partition side-effects
  1863. * d4554fb [useradmin] Raise popup errors and log warnings on RuntimeErrors when importing/syncing LDAP users
  1864. * 5bb94b5 HUE-2978 [metastore] Improved UX of deleting partitions
  1865. * c82424e HUE-2978: [metastore] Offer to delete partitions
  1866. * 77d8948 [oozie] Big workflow dashboards should scroll
  1867. * 39b66d4 [hbase] Truncate HBase API exceptions in popup up to first newline.
  1868. * e36e296 [metastore] Alert user in case of error
  1869. * 8ef2a61 [useradmin] Validate usernames on LDAP sync and log warning on errors
  1870. * 78a513c [search] Only set record row details and links one time
  1871. * 8b42920 HUE-2523 [hive] Convert xls download test to the new generator
  1872. * 7d7db31 HUE-2523 [core] Bump lxml 3.4
  1873. * 76c4303 HUE-2523 [core] Convert XLS export tests to XLSX
  1874. * 1c523ae HUE-2523 [core] Migrate tests to read back generated xlsx
  1875. * e49ae13 HUE-2523 [core] Add jdcal in ex-py for pyopenxsl
  1876. * 817f25c HUE-2523 [core] Convert XLS export to pyopenxls
  1877. * dff3a73 HUE-2523 [core] Remove lxml from ext-py
  1878. * ff69eb2 HUE-2523 [core] Add openpyxl to ext-py
  1879. * 09f20df HUE-2523 [core] Convert tests to the new generator
  1880. * 65b4918 HUE-2523 [core] Migrate Excel generator to XlsxWriter
  1881. * 8e1f685 HUE-2523 [core] Remove tablib XLS packages
  1882. * 73e2bc7 HUE-2523 [core] Remove xlwt and xlwt3 utils from tablib
  1883. * 7a8b685 [oozie] Fix for broken submit workflow
  1884. * 8a0499f HUE-3023 [aws] Perform check config only if configured
  1885. * 4f5ca16 [metastore] Allow creating a Hive tables with spaces in the data location
  1886. * d511de4 [search] Do no HTML escape rows when downloading them
  1887. * 1af9afd [aws] Skip failing tests for now
  1888. * 9fe3054 [hadoop] Implement missing isroot method into WebHdfs
  1889. * aa9bcda [aws] Disable AWS filesytem until completed
  1890. * 06847d3 HUE-2915 [fb] FS util function path seems to not exist
  1891. * 2cfbef7 HUE-2930 [aws] Add configuration in the hue.inis
  1892. * bff291a HUE-2925 [fb] Allow to use absolute URI
  1893. * 77115d3 HUE-2930 [core] Add S3 filesystem
  1894. * 7dce32a HUE-2924 [core] Implement proxy filesystem
  1895. * 69933a5 [desktop] Display document api errors
  1896. * e0b7d53 [desktop] Switch api to using request_{GET,POST} to return 405 errors
  1897. * 660000a [libsaml] Make sure that SAML_USE_NAME_ID_AS_USERNAME is defined
  1898. * 8df53a9 [core] Promoted notebook to the first level menu
  1899. * 173c090 HUE-3014 [oozie] Show better error message when user enters custom cron syntax for coordinator dataset
  1900. * 419e1d9 [notebook] Double click on a snippet name adds a new snippet before it
  1901. * 4e59657 [notebook] Expand click-to-focus area for the editors
  1902. * 0af474b [desktop] Add environment variable to ignore password script errors
  1903. * 5c55a86 [desktop] Allow secret key to be passed in an environment variable
  1904. * 1f615b1 [notebook][search] Support for fullscreen mode
  1905. * aab72a8 [libsolr] Add a config flag for setting CA authority checking
  1906. * df2c2e6 [indexer] Improve parsing of binary or non unicode data
  1907. * 9b9047e [spark] Add SNAPSHOT to Livy makefile
  1908. * b95ed4a [livy] Fix compiling livy by correcting some version numbers
  1909. * bf916ad [indexer] Reload the page when deleting all the collections
  1910. * 4668121 [beeswax] Raise an error if Beeswax app tests fails to authenticate
  1911. * 423146f [sqoop] Raise an error if Sqoop app tests fails to authenticate
  1912. * 008bf6f [impala] Check if creating the impala test databases had failed
  1913. * 8f26cab [libsaml] Fix using saml name id as a username
  1914. * a5b3453 [libsaml] Make sure saml replies go through the load balancer
  1915. * 410d9e1 HUE-3017 [oozie] Coordinator dashboard does not show jobs with certain statuses
  1916. * a546226 [notebook] Improved move widget UX
  1917. * c7fe666 [desktop] Improve the error message if api requests are malformed
  1918. * 45287b5 [desktop] Only allow owners to change document permissions
  1919. * 0cd37d7 [livy] Fix executing '%' in pyspark
  1920. * 60298be [notebook] Support different type of cells on d'n'd iPython import
  1921. * 0cc16c1 [notebook] Fix HdfsAutocompleter issue
  1922. * 877de7d [beeswax][notebook] Scroll to error messages in long editors
  1923. * a3ffb25 HUE-2745 Adding py4j package
  1924. * 3a8bcf5 [notebook] Cache the HDFS autocomplete data
  1925. * 22296be [notebook] Trigger autocomplete after '/'
  1926. * fe0b968 [core] Fix assist panel caching
  1927. * 834200e [tools] Make less command compatible with Ubuntu
  1928. * 8fd9aab [tools] Make ace commands compatible for Ubuntu
  1929. * 88284cb [notebook] Unified result messages
  1930. * c15bb93 [core] Added 'make theme' target to the Makefile
  1931. * 2e0ca55 [core] Added 'make ace' target to the Makefile
  1932. * 0e15a17 [desktop] Support environment variable Database/LDAP/SMTP/SSL passwords
  1933. * df932c6 [core] Added SSL Certificate Chain support to CherryPy
  1934. * e49c301 HUE-3012 [beeswax] Remove inline error messages on Explain query
  1935. * 353b75b HUE-3004 [oozie] Some fields in the Coordinator are editable even before pressing Edit
  1936. * 21e5eb6 [core] Audit DELETE_USER operations in process_view before we delete the actual user records
  1937. * a106b9e [notebook] Exported ko to window.hueDebug
  1938. * a138f68 [notebook] Support for dropping older iPython files
  1939. * 1370f7b [core] Fix issue with missing preselected database in the assist panel
  1940. * 930e70d [notebook] Add HDFS autocomplete
  1941. * feaba62 [core] Extract dedicated SQL autocompleter
  1942. * ff82088 [core] Fix the autocompleter jasmine tests
  1943. * 2862744 [notebook] Turn the autocompleter into a module
  1944. * 61b0989 [notebook] Extract require configuration to separate file
  1945. * 11af74f [notebook] Exported the viewModel to window.hueDebug
  1946. * 326f832 [core] Improved jHueNotify margin and enforced max height
  1947. * 7feb6c0 [core] Improve jHueNotify look and fix for multiple error messages
  1948. * f5b623c [notebook] Improve Ace editor border marking
  1949. * e60e2ae [notebook] Avoid top bar blinking on notebook load
  1950. * 35d6eb7 [livy] Downgrade the version to 0.2.0
  1951. * 9602f2b [core] Reorganized .gitignore files and added a global java-lib exclusion
  1952. * 577a0b6 [hue] Fix parsing classes in pyspark
  1953. * 7ff98fa [search] Remove duplicated autocomplete code
  1954. * 3f15d43 [notebook] Restyled JDBC login form
  1955. * 2db8a2c [notebook] Avoid deprecation warning about BaseException.message
  1956. * 9a418f9 [notebook] Add note about adding jdbc connector jars on the CLASSPATH
  1957. * 49a29dc [notebook] Automatically start the DBProxy server if we have some JDBC snippets
  1958. * 9dfcf64 [dbms] Add bin and hue command to start DBProxy
  1959. * d3f2728 [dmbs] Little tweaks in the Makefile
  1960. * 31a626f HUE-2745 [dbms] Add licenses and basi makefile
  1961. * f620d0f HUE-2745 [dbms] Add initial DBProxy app
  1962. * f66e3f9 [notebook] Load the databases when switching snippet type
  1963. * cfad3a0 [notebook] Extract markdown to a separate snippet type
  1964. * cebf7fe [notebook] Fix markdown editor issue
  1965. * 1d1cf67 [notebook] Turn all knockout dependencies into modules
  1966. * 29d8ba9 [notebook] Initial modularization of the view model
  1967. * c5bdfea [notebook] Introduce RequireJS
  1968. * 998bf3f [core] Add RequireJS 2.1.20
  1969. * 0ac1190 Merge pull request #245 from hdinsight/master
  1970. * 5f8b24c HUE-1910 [oozie] Set default TZ to browser TZ
  1971. * 46feb96 HUE-1910 [oozie] Added Moment.js timezone and tzdetect
  1972. * db3f15d HUE-1910 [oozie] Support oozie.processing.timezone
  1973. * 462e03b Add file separator for accessing yarn-site.xml.
  1974. * 27f6589 [notebook] Save the last used assist panel source in total storage
  1975. * 9ec3caa [dbms] Rename JDBC 403 to 401 Unauthorized
  1976. * 0850ec4 [core] Assist should prompt for connection credetendials if there is no session
  1977. * 45210f9 [notebook] Friendler error message when not jdbc session and using the autocomplete
  1978. * c31c1e8 [notebook] Retry creating session if it failed at early stage before
  1979. * dec0e51 [livy] Put quotes around the the 'spark-submit' arguments
  1980. * bb53653 Merge pull request #241 from szczeles/queue_support_in_livy
  1981. * a937ec4 HUE-2749 [hive] Failure to authenticate to HS2 or Impala using LDAP seems silent
  1982. * a9f4b2f [core] Add descriptive operationText to the audit log for user/group admin operations
  1983. * e1b2eca [indexer] Drops non unicode chars when indexing data
  1984. * 66ef9e3 [search] Backend for autocomplete with Solr suggest
  1985. * d93903f [search] Integrate Solr suggest in the UI
  1986. * 97e99fe [hive] Do not log the secret of the HiveServer2 session
  1987. * 21646ba [notebook] Cache the JDBC connection by snippet type and user
  1988. * df8d45a HUE-2760 [notebook] Show job links on the logs panel
  1989. * db10530 [filebrowser] Hide file upload list on modal dialog hide event
  1990. * f6d43b2 [notebook] Fix issue with pre-selected assist database
  1991. * 5a78365 [core] Fix never-ending spinner issue when reloading the assist panel
  1992. * 8006b6f [core] Add getAddressFromCoordinates to the HueGeo lib
  1993. * 7fc1bb4 [beeswax] Stop logging the beeswax thrift session id
  1994. * f97e7bc [impala] Raise impala query timeout for live cluster testing
  1995. * f42496f [beeswax] Switch to new assist panel and helper
  1996. * 2c9f922 [notebook] Save the active databases with the notebook
  1997. * 06d2c68 [core] Keep track of databases in assist helper
  1998. * 31734d2 [notebook] Support multiple sources in the assist panel
  1999. * c42d7b3 [core] Migrate assist helper to new notebook API
  2000. * a4deeae [livy] Time out sessions and batches that have been done for a while
  2001. * 54f1f2c [oozie] Fix python syntax in the forms
  2002. * e3b8418 Support for queues in Livy
  2003. * b0ccdf4 [beeswax] Fix missing sqlDialect error
  2004. * d503918 [notebook] Remove import dependency on Oozie
  2005. * 60b8218 [notebook] Remove import dependencies on Spark
  2006. * dfc9552 [oozie] Display the Job XML property in the editor
  2007. * e87972c [oozie] Generate prepares XML instruction in the Streaming action
  2008. * 64da5fc [dbms] Support asking for JDBC credentials
  2009. * a0a1055 HUE-2770 [oozie] Hide Oozie specific workflow properties
  2010. * c80c71b HUE-2760 [spark] Add links to Spark UI and jobs
  2011. * a757e21 [oozie] Changed label on coordinator warning column
  2012. * 4c3b9ff [notebook] Fixed results height and reduced default size of Ace editor
  2013. * b36e739 HUE-3002 [oozie] Very difficult to remove an action's properties
  2014. * f6bf862 [search] Avoid jumpiness after edit collection link
  2015. * 1684e85 [notebook] Support execution of selected statements
  2016. * 749c16e [notebook] Cleanup the ace editor binding
  2017. * 40be220 [notebook] Only HTML escape table data
  2018. * d468614 [core] Remove statusCode from audit log
  2019. * 8648a05 HUE-3003 [search] Allow linking to a collection with a predefine query string
  2020. * 8256b02 [notebook] Hide drop file message if the drag event doesn't have one or more files attached to it
  2021. * ad86dc6 [notebook] Only show autocomplete spinner when calling the API
  2022. * b4194e5 [notebook] Set correct ace mode for mysql and pgsql snippets
  2023. * 60be109 [beeswax] Fix autocomplete for hive and impala query editors
  2024. * 3a2414a [notebook] Extend browser support for CSS transitions
  2025. * 72cc77d [notebook] Don't rotate the magic snippet wheel
  2026. * 7b930d9 [notebook] Add autocompleter to the ignored serializable objects
  2027. * d862538 [notebook] Fix dictionary comprehension for Python 2.6 compatibility
  2028. * 5454cde [core] Fix README formatting of openssl MacOS instructions
  2029. * 041a39e [core] Update README with Mac OS X openssl lib instructions
  2030. * 962a334 [notebook] Maintain underlying jobs list executed by the snippet
  2031. * cc4ee17 [tools] Add a note about building ace
  2032. * 42ab1ed [notebook] Add sql dialect flag for snippets in the snippet view settings
  2033. * 127332c [notebook] Improved multi-snippet autocomplete
  2034. * 246c7f4 [core] Add support for session autocompleters to Ace
  2035. * 9cc44cd [notebook] Support autocomplete for any SQL dialect
  2036. * b50abe8 [notebook] Support new autocomplete API
  2037. * 9eda820 [notebook] Add an example of jdbc snippet in the ini
  2038. * 1fc39a6 [libdbms] Support JDBC statements without any result set
  2039. * 72ff279 [notebook] Add autocomplete for JDBC interface
  2040. * 851729a [notebook] Add title to help notice the scrollable columns in the result
  2041. * ce43d37 [notebook] Core of the autocomplete API
  2042. * ecb2c62 [notebook] Assist dbl click should only add to the last active snippet and not all of them
  2043. * 3659c1f [notebook] Use the assistHelper from the binding params of the ace editor binding
  2044. * a87f23a [notebook] Make progress and jobs methods public
  2045. * b011d14 HUE-2998 [core] Top half of right-aligned dashboard icons not clickable
  2046. * ce499b6 [notebook] Highlight the editor on hover
  2047. * c6f27ed [oozie] Made explicit that you can zoom in a widget and smarter inputs
  2048. * 55d2fef [core] In audit logging, set allowed value to False for invalid login attempts.
  2049. * 5c95af1 [desktop] Fix typo that broke ldap authentication
  2050. * 515beb7 [notebook] Delay scrolling for the ace editor and the results
  2051. * 725cd3b [core] Add ko binding that delays overflow
  2052. * 45272c3 [core] Add support for hidden overflow to the Ace editor
  2053. * ed534ab [notebook] Add margin to snippets for easier page scrolling
  2054. * 4690a49 [librdbms] Add a default failover to string when decoding rows
  2055. * a0e0549 [notebook] Escape rows properly for HTML and NULL values
  2056. * a9476f6 [notebook] Added gradient map scope
  2057. * da8f17b Merge pull request #239 from yoer/master
  2058. * e152be9 [search] Add a MockResource.invoke and head method
  2059. * 3dd6276 HUE-2995 [libsolr] Fix uploading large bodies to Solr with Kerberos
  2060. * 388cac9 [beeswax] Fix test to work with kerberized Impala
  2061. * f8bc1be [search] Fix the bug on World maps introduced by the Europe topology
  2062. * 3fb1c29 [search] Added Europe to the geography types
  2063. * 44ced10 append the 'csrf_token' token to calculator app
  2064. * 145bcf2 [notebook] Set SQL as the default type of highlighting
  2065. * 678a965 [core] Fix whitespace issues with autocomplete
  2066. * bd483e6 [search] Added maps of Brazil, Canada, India, UK, Italy, France, Germany, Japan and Australia
  2067. * 95ee5eb [notebook] Maintain order in snippet wheel when adding snippets from history
  2068. * 4214099 [notebook] Only enable snippet modal when there are more than 5 types of snippets
  2069. * c7f6d14 [notebook] Set scala highligthing for spark snippets
  2070. * 75d540f [core] Sync the hue.ini templates
  2071. * d44466e [spark] Add an option for configuring Spark SQL
  2072. * 972fc7c [core] Re-order configuration sections with most common up
  2073. * f842b96 [notebook] Add connection configuration options for JDBC
  2074. * 382ef4b [librdbms] Convert JDBC interface to basic DB 2.0
  2075. * 9a7f969 [core] Remove PyYAML from ext-lib
  2076. * dcfa65e [notebook] Fix JDBC result display
  2077. * 5a537db [librdbms] Basic implementation of JDBC api
  2078. * a460409 [notebook] Support of Pig properties
  2079. * 12b7c1d HUE-2987 [oozie] Fix sync workflow to update Coordinator definition
  2080. * c6f3f07 [impala] 'sample' field was renamed to 'sample_rows'
  2081. * 35b8c5a [core] Keep the order when reading from the config file
  2082. * 993d7c1 [core] Add Python 2.4 backport of ordered dict for listing snippets in order
  2083. * 6541c1c [notebook] Add dedicated show modal button to the snippet selection wheel
  2084. * 7cde058 [core] Add support for fadeOut and speed to the fadeVisible ko binding
  2085. * 0fccd1c [notebook] Move radial menu ko binding to dedicated component for adding snippets
  2086. * 1b30217 [notebook] Improved add snippet wheel
  2087. * a24e154 [notebook] Support two lines in magic wheel alternatives
  2088. * b003380 [core] Allow undefined to be published with huePubSub
  2089. * 9d28080 [notebook] Consolidate view-related snippet settings and add missing icons
  2090. * 694f2cb [search] Added China to the gradient map scope
  2091. * 0a0241f [core] Added TopoJSON geometries for the rest of the world
  2092. * d0d59d0 [search] Improve UX of the 'search when i move the map' checkbox in small maps
  2093. * 4bc5133 [notebook] Add a Pig snippet
  2094. * 448a9f8 [core] Fix CTRL + Click on AceEditor for HDFS links
  2095. * 286bd65 [pig] Remove escaped HTML tags from submission confirmation popup
  2096. * 9cd9d59 [livy] Add support for the %json magic for PySpark
  2097. * 5b644f0 HUE-2976 [desktop] Don't set the kinit renewal lifetime
  2098. * 07bdce7 [spark] Remove thread mode from the configuration
  2099. * f25fbd9 [metastore] Avoid using tinyints when guessing the type of columns
  2100. * b0eab90 [spark] Support listing tables
  2101. * 1aa9cae [hive] Support fetching table list from various SQL servers
  2102. * 1a49dfe [notebook] Show fetch log errors in the log instead of query error
  2103. * a876063 [hive] Stay backward compatible with older versions
  2104. * 1920319 HUE-2984 [core] Warn about SQLite DB when more than a few users exist
  2105. * 20b8e46 [desktop] Add a login_splash_html configuration option for custom login messages
  2106. * cbe84c7 [notebook] Set correct ace mode for new snippets
  2107. * 4b960e1 [oozie] Revert some imports moved in HUE-2982
  2108. * 51be075 [notebook] Add a R snippet example with plotting
  2109. * 7c9a069 [notebook] Fix the install of the example Notebook
  2110. * 7061d2e [notebook] Update list of available snippets in ini
  2111. * 8c2fcfe [spark] Update doc about creating a sessions
  2112. * 2a3aab5 HUE-2982 [oozie] Fix sync workflow button error in Coordinator page
  2113. * aeb1d88 [core] Moved MR and YARN cluster HA decorators to desktop hadoop lib so that they can be reused
  2114. * ca58ba7 [livy] Skip sparkR tests if sparkR executable is not present
  2115. * 1e0d339 [notebook] Added online MathJax support for Markdown
  2116. * 5732181 [beeswax] Do not use an iterator for the sample data
  2117. * 029aac8 [oozie] Make oozie test re-entrant on Oracle DB
  2118. * 6ffc86c [oozie] Resize coordinator tabs to fit window height
  2119. * f7a3921 [oozie] Change color of ignored status to gray
  2120. * d27fe33 [oozie] Hide the coordinator actions when status is killed or succeeded
  2121. * 5439165 [oozie] Group coordinator buttons
  2122. * 3bb0f3d [core] Make desktop tests pass on Oracle DB
  2123. * 714bd1d [notebook] Show delete confirmation if snippet has content
  2124. * 5925ee3 [core] Don't show spinners for each item in the assist panel
  2125. * b8345e4 [core] Only expand entries for types that are expandable in the assist panel
  2126. * e1af716 [impala] Display message in Sample view in Impala if the table has complex column types
  2127. * ce8c513 [impala] Only show the columns returned in the sample data
  2128. * c8352c9 [search] Do not convert to string multivalue fields in result download
  2129. * 8db2dbe [jb] Show another attempt log if last attempt do not have any task
  2130. * f769fb4 [oozie] Give a full output path to the coordinator example
  2131. * 2421c94 [beeswax] Fix parquet format for customers table and remove parameterization from sample query
  2132. * 43e293c [beeswax] Fix lookup of beeswax and impala auth configuration values in dbms server
  2133. * a1ae994 [livy] Error out the session if the repl errors out
  2134. * d26608f [livy] Improve error message when pyspark and py4j not found
  2135. * 3354386 [livy] Bump minimum spark version in readme
  2136. * fb2f75a [livy] Find the py4j files with glob to make it forward compatible
  2137. * 6f5c2e2 [livy] Require SPARK_HOME env var to be set
  2138. * dff49ea [livy] Fix launching pyspark inside yarn
  2139. * 261fefa [notebook] Fix the Notebook links on the Home page
  2140. * 5838f00 [search] Do not convert to string multivalue fields
  2141. * ca8019e [tools] Add latest set of op scripts
  2142. * 8e20c57 [notebook] Add a new snippet with cmd+N/ctrl+N
  2143. * 789229f [notebook] Notebooks with a lot of text are now more compact
  2144. * 387e615 [notebook] Updated markdown import from iPython/Zeppelin
  2145. * 003bf80 [notebook] Initial support for Markdown editing
  2146. * f31fa62 [notebook] Added snippet titles to print CSS
  2147. * d824644 [notebook] Fixed font size on Ace Editor in Linux
  2148. * ad34456 [notebook] Updated print CSS
  2149. * 832b8a2 [notebook] Support for player mode
  2150. * e85cdee [notebook] Switch from double click to alt/ctrl + click to follow ace links
  2151. * c5a9cd3 [notebook] Gracefully fail when no snippets are configured
  2152. * 1ad98ac [notebook] Clean-up the ini template
  2153. * 9b6158d [notebook] Catch import errors for jaydebeapi module
  2154. * 1f6abeb [notebook] Update interfaces to use livy and livy-batch
  2155. * 2ab2f92 [notebook] Reverting the entry_point so that notebook is included in DESKTOP_APPS global
  2156. * e5c7a54 [core] Add desktop libs with is_url_namespaced setting to global namespace
  2157. * 5cee1db [notebook] Correct entry_point in setup and fix hueversion symlink target
  2158. * e4aca66 [notebook] Create a hook to display results coming from API without async execution
  2159. * 72352d7 [notebook] Pick snippet interface according to the configuration
  2160. * e4dd9d7 [notebook] Concept of MySQL connector
  2161. * b20d7dc [notebook] Concept of JDBC support
  2162. * 9b9f71b [notebook] Make snippets configrable from hue.ini
  2163. * 1435cd5 [notebook] Split APIs into respective packages
  2164. * 5743aa9 [notebook] Move Notebook specific code out of Spark app
  2165. * 1474cfe [notebook] Refactor notebook code into a single lib
  2166. * dbae7ad [doc] Replace Beeswax server reference to Livy server in SDK
  2167. * 8b33487 [notebook] Do not mix and match error code for expired session and legit error
  2168. * 0423bcb [core] Support nested lateral view references
  2169. * 40be01c [core] Support table references in lateral view definitions
  2170. * 68c50c2 [core] Support multiple exploded lateral views
  2171. * 0de6bff [core] Fix incorrect table alias suggestion in autocomplete
  2172. * 64c7cea [desktop] Rename some metrics
  2173. * 5fd7b0d [beeswax] Avoid jump in the vertical resize of the query editor
  2174. * d2c1446 [beeswax] Number results row from 1 instead of 0 and set max width for the first column
  2175. * 1302e34 [desktop] Move oauth_authentication_time metric into liboauth
  2176. * c458589 [desktop] Consolidate and improve the metric destription suffixes
  2177. * 7491374 [desktop] Fix registering the UpdateLastActivityMiddleware
  2178. * a768c8b [desktop] Remove "in Hue" from metric description
  2179. * 2d2f274 [desktop] Add an index to last activity
  2180. * 7865f67 [desktop] Simplifying metric names
  2181. * e3168ee [desktop] More metric cleanup
  2182. * f45fb42 [desktop] Metric description improvements
  2183. * fe3f8e7 [pyformance] Expose {histogram,timer} median, histogram sum metrics
  2184. * 18c8d0f [desktop] Simplify many of the metric names
  2185. * d3469ee [desktop] Only add the key to hiostogram, meter, and timer metrics
  2186. * 2b98681 [core] Autocomplete support for Impala arrays and maps
  2187. * 576e387 [core] Proper support for JOIN in autocomplete
  2188. * 27e84db [core] Set the DB settings TEST_USER param and default to 'hue_test'
  2189. * 605ea11 [beeswax] Reset INITIALIZED global for metastore tests
  2190. * fe7d9b1 [oozie] Sort datasets by name to make postgres tests consistent
  2191. * 3729de6 [core] Fix Oracle issues with TIMESTAMP migration and adding CLOB field in loaddata command
  2192. * 1d3591a [core] Improved handling of click and double-click on the same element
  2193. * 383f4d0 [beeswax] Support autocomplete for exploded lateral views
  2194. * 185b6e0 HUE-2901 [metastore] test_describe_partitions is failing on live cluster HUE-2900 [metastore] test_has_write_access_backend is failing on live cluster
  2195. * deadead [fb] Fix jHueHdfsTree for move and copy
  2196. * 18b0428 [dbquery] Fixed problem with empty query name and description
  2197. * 596dd8e [core] Downgrade pylint version to avoid a build error on SLES 11
  2198. * af24bd6 [impala] Don't show terms in column analysis of complex column types
  2199. * ac8ecb4 [core] Improved assist panel error handling
  2200. * 0c3da7a [core] Show server error messages when fetching terms fails in the assist panel column stats
  2201. * 1fa67ed [core] Don't cache any assist API response that contains the "code" attribute
  2202. * 4cf4b17 [core] Show terms for complex type columns
  2203. * d7d3b3d [jb] Unified, fixed and ellipsified long IDs on the side bar
  2204. * cce5d6c [beeswax] Improved history page search UX
  2205. * a61dae8 [useradmin] Fix useradmin test by ordering users
  2206. * 497d640 [impala] Enable parameterization for Impala "customers" sample design
  2207. * 7836bf3 [core] Update sample install user's username if needed
  2208. * 136c060 HUE-2551 [oozie] Easier update of a scheduled workflow
  2209. * 7160f85 HUE-2941 [hadoop] Cache the active RM HA
  2210. * b94207f [libzookeeper/indexer] Rewrite to not leak sockets or temp files
  2211. * fae25ad [core] Fix column stat refresh and accuracy indication
  2212. * 82a3ddf [spark] Fix cache issue with assistHelper
  2213. * 3daadac [core] Show message for unsupported column types in stats
  2214. * 32cade7 [libzookeeper] Fix zookeeper tests on kerberos cluster
  2215. * 6d30a7d [beeswax] Reset the cache when using the Mocked API in the tests
  2216. * 05e4b39 [core] Support autocomplete for array types in hive mode
  2217. * d7b231a [core] Show the correct type in the autocomplete menu
  2218. * 1cbc8b8 [desktop] Fix tests to support python2.6 syntax
  2219. * 3d9ba9a [core] Fix SDK app_template static paths
  2220. * c9563ee [desktop] Config check test now has a valid SSL certificate path
  2221. * 94d8230 [core] Convert one liner if to 4 lines for more readability
  2222. * e1b6cba [core] Fix generation of template app in the SDK
  2223. * 417d09a [useradmin] Add UserProfile.last_activity, metric, and middleware
  2224. * db15c68 [useradmin] Make sure the creation_method is a string
  2225. * 90227f3 [desktop] Generate the mdl with sorted metrics
  2226. * 9334713 [useradmin] Unskip a unicode test, skip a case sensitive test
  2227. * 71d68f0 [useradmin] Make tests sort the usernames
  2228. * d30c896 [desktop] Fix failing desktop tests
  2229. * daae285 [core] Split auth Pass-through username and password in respective apps
  2230. * 3c69c63 HUE-2954 [hbase] Fix internet explorer issue with cell editor
  2231. * 0d9c01f [spark] Fix table metastore links
  2232. * 71be43ab HUE-2942 [core] Unify app examples
  2233. * f424e76 [beeswax] Fix table name autocomplete
  2234. * d058c2f [core] Improved assist loading experience
  2235. * f17468b [core] Move the active database to the assist helper
  2236. * f563e36 [beeswax] Remove unused code
  2237. * e3a19d6 [core] Fix issue with column stat terms not loading
  2238. * 15dc487 HUE-2955 [desktop] Error if the configured SSL certificate/key files do not exist
  2239. * 0d1b176 [desktop] Fix downloading and installing pylint
  2240. * d19fd78 [desktop] Stop eating exceptions if a pseudo cluster fails to start
  2241. * 48e97fd [desktop] Fix some stinky typos
  2242. * 0cabff0 [desktop] Avoid potentially referencing unbound local variables
  2243. * a3cbddc HUE-2465 [beeswax] Nice to have Natural Sort for database drop-down-list
  2244. * 4cab982 HUE-2886 [spark] Show livy session process logs
  2245. * 027c070 [hadoop] Rename user to username to remove ambiguity
  2246. * 6236ad7 HUE-2936 [jb] Disable delegation token for YARN kill button for now
  2247. * a691ed7 HUE-2936 [jb] Support delegation token for YARN kill button
  2248. * df0bb00 [beeswax] Provide explicit permissions to apps to test user
  2249. * 4c13df1 [livy] Add reference to config file
  2250. * b4ccb8f [core] Do not re-add default group to users at login time
  2251. * a4f778a [indexer] Fix delete indexes for collection types in new Indexer
  2252. * 702dd30 [indexer] Rename collections to more generic indexes
  2253. * 4161ac7 [desktop] Fix oozie_api.py to work on Python 2.6
  2254. * 213c4dc [desktop] Backport CherryPy fix for 408 errors when used with mod_proxy
  2255. * 76e7f30 [beeswax] Fix issue with initially selected DB in assist
  2256. * 0f082a5 [beeswax] Use the new assist panel for Hive and Impala
  2257. * 327cace [core] Don't show _impala_builtins in assist panel
  2258. * afea9b1 [core] Assist panel improvements
  2259. * 582cef3 HUE-2227 [oozie] Added tests for coordinator log filtering
  2260. * c101525 HUE-2227 [oozie] Added clearable and value update for text filter, added spinner
  2261. * 07f172e HUE-2227 [oozie] Added loglevel and text filters for Coordinator logs
  2262. * 942208e HUE-2227 [oozie] Prettify log filtering
  2263. * 592ce4b HUE-2227 [oozie] Add a limit=N and recent=M when fetching job logs
  2264. * 11db7f8 [oozie] Read Oozie Share Lib path directly from Oozie in check config page
  2265. * f372756 [core] Show error messages from table and columns stat refresh in the assist panel
  2266. * 789e64d [core] Assist entry double-click will insert complete path
  2267. * 850d6d6 [spark] Add structs, arrays and maps to assist panel
  2268. * 5dfee30 [core] Extract assist helper with common assist functionality
  2269. * fad2c20 HUE-2945 [fb] Drag&Drop upload can hide errors
  2270. * 0a1aa83 [livy] Update README to list R
  2271. * a290e90 HUE-2913 [fb] Make showing and hiding upload/download button configurable
  2272. * b19159c [metastore] Fix metastore show_tables test
  2273. * 8d21a08 [beeswax] Warn on downloading beeswax results with more than 255 columns
  2274. * f48781e [desktop] Fix typo in file_reporter
  2275. * f154e94 [HUE-2939] Use SHOW DATABASES for more performant fetch databases, and lazily-fetch metadata
  2276. * 95ea7b6 [desktop] fix metrics; pyformance counters shouldn't necessarily be CM counters
  2277. * 871ce1d [desktop] Bump coverage version to fix Python 2.7 bug
  2278. * b282c6a [beeswax] Fix autocomplete.js import for case-sensitivity
  2279. * e7d859f HUE-2926 [notebook] Opening multiple snippets of the same type starts multiple livy sessions
  2280. * 79a4fe1 HUE-2943 [core] Manually exclude boto from the pruning to fix packaging
  2281. * 6203c06 HUE-2943 [core] Add boto library
  2282. * 696f926 [desktop] Assert collection interval is greater than 0
  2283. * f2a7bda [desktop] Log errors in file_reporter
  2284. * 98d42f1 [desktop] Use "seconds" for metric numerators
  2285. * 53480d4 [desktop] Remove unused context from metric definition
  2286. * 40a9cec [search] Remove Moment.js deprecation warnings
  2287. * f1d916e [rdbms] Fall back to database from conn_params on failure to fetch from Postgres information_schema
  2288. * d378e37 HUE-2844 [desktop] Add django-axes to limit login attempts
  2289. * 3d6a38b [desktop] Use User.objects.get_or_create to make sample user
  2290. * d295c91 [useradmin] Make useradmin tests reentrant
  2291. * c0a65f3 [desktop] Lazily count the number of users
  2292. * 94cf67d [desktop] Don't create models in a default argument
  2293. * d3644da [core] Fix XSS vulnerabilities of jHueNotify and UserAdmin
  2294. * a4dd046 HUE-2852 [core] Support autocomplete of struct types from map values in hive mode
  2295. * 8ae1a8a [core] Make the autocompleter mode-aware
  2296. * 98b496e [core] Trigger ace autocomplete after completions that ends with "."
  2297. * 8c50f8e [core] Improves reliability of the main navigation dropdown submenus
  2298. * c4a3aa8 [jb] Avoid exeception when building log job links with a terminal dot
  2299. * 2979c25 [core] Add table ref autocomplete for multiple tables in the statement
  2300. * 2f074ee [beeswax] Switch to the new autocompleter
  2301. * 80059eb [core] Fix autocomplete issue with started entry of 'from' in select statement
  2302. * 0d5eacf [spark] D&D import functionality for other notebook formats
  2303. * 01035e9 [jb] Sort by Submission Date desc by default
  2304. * 6f9fcce [beeswax] Add more space in between saved designs and add comments
  2305. * 95cee46 [spark] Fix Spark notebook close_statement, which only takes snippet object
  2306. * 57efa31 HUE-2700 [oozie] Oozie workflow and action names longer than 40 chars cause issues
  2307. * 7cc45ea HUE-2952 [beeswax] Calling not existing function gives no error
  2308. * 3e4b8fd [core] Clean-up the ace autocompleter
  2309. * e2de78d HUE-2852 [core] Support autocomplete of struct types
  2310. * 2484c57 [core] Initial Jasmine tests for autocomplete
  2311. * a57ec97 [core] Move autocomplete from spark to desktop
  2312. * 3a750f7 [core] Move autocomplete functionality from ace binding to ace.autocomplete.
  2313. * 709383b HUE-2951 [infra] Specify DEVTOOLS versions
  2314. * 0847c1e [beeswax] Add better error message when Hue can't connect to HS2
  2315. * b9567b3 [hbase] Allow users to drop or edit HBase tables when impersonation is ON
  2316. * 6a6fba6 [livy] Update the documentation to reflect the current API
  2317. * 059a226 HUE-2935 [core] Check status of cluster as the hue user
  2318. * 91a9336 HUE-2935 [hadoop] Support YARN impersonation
  2319. * ea3b7a2 [core] configuration for load balancer that requires X-Forwarded-Host header
  2320. * 68df0f2 [impala] Added session link to the new tab
  2321. * 255e8b2 [impala] Skeleton of a new Session tab
  2322. * 8849ae7 [security] Auto-size the Hadoop Groups dropdown in the Hive app
  2323. * a791475 [beeswax][spark] Fix charts sorting
  2324. * e496a74 [core] Add ability to enable DjangoSaml2 and PySaml2 Debug logging
  2325. * de616fe HUE-2946 [hadoop] test_seek_across_blocks OOM HDFS on live cluster
  2326. * a78b9bc [middleware] Change status to statusCode in audit log
  2327. * 059f81c [spark] Fix Ace editor basePath for static files
  2328. * 27e9292 [indexer] Skeleton for providing a path to an HDFS file and previewing it
  2329. * 3bce9ef [indexer] Add ability to quick-create empty collection
  2330. * 605e022 [indexer] Move the alias deletion to the checkbox list
  2331. * d0c0a5b [indexer] Edit existing alias
  2332. * 53f26b4 [indexer] Delete a collection alias from the UI
  2333. * b48897f [indexer] Display collections column value for indexes list page
  2334. * d408762 [indexer] Rename notebooks to indexes
  2335. * 7114b78 [indexer] Add form to create a new alias`
  2336. * dac5461 [indexer] Skeleton for listing collections, cores and aliases
  2337. * f987fbc [indexer] Removing old unused macro page
  2338. * 1a4099b HUE-2869 [indexer] API calls for Managing collection aliases
  2339. * fe6e66a HUE-2944 [proxy] Fix logging in test progress-line
  2340. * a2e4eb1 [filebrowser] Truncate the error message returned by the HDFSfileuploader
  2341. * ef471f0 [middleware] Remove unused audit_queue_policy configuration
  2342. * 6abc9ae [beeswax] Avoid NaN columns on un-managed backend error
  2343. * a317b33 [desktop] io.SEEK_* is only in Python 2.7+.
  2344. * 7851c85 HUE-2940 [core] Use io.SEEK_* constants
  2345. * 92dab4d [middleware] Update audit log format and whitelist of operations
  2346. * 82775b0 [core] Move parameterization lib to desktop from jobsub
  2347. * 97fd947 [beeswax] Fix async problem of loading of tables/autocomplete
  2348. * 3b39a26 [beeswax] Avoid multiple concurrent fetchResults calls
  2349. * 0f4cd07 [core] Support middle click paste on Ace editor
  2350. * b5b625f Merge pull request #225 from fermich/resourcemanager_information_uri
  2351. * 0454993 [core] Upgrade Jasmine to 2.3.4
  2352. * 5d6736a [spark] Improved result handling for charts
  2353. * 4e159fb [spark] Return the session properties when creating a new session
  2354. * b1389b9 HUE-2079 [beeswax] Consolidate alias autocomplete
  2355. * 5aeb3d4 HUE-2904: [hive] Create nested type example HUE-2905: [impala] Create nested type example HUE-2306: [impala] Add sample tables and data to exercise all of Impala's supported types
  2356. * 16b4ba5 HUE-2906 [impala] Autocomplete struct nested type HUE-2907 [impala] Autocomplete helper for map type
  2357. * 9ed8727 [desktop] Fix MDL generation
  2358. * 4363f0a [desktop] Add config options to config files
  2359. * 7277f1e [desktop] Correct metric numerators and denominators
  2360. * 8cc873b [desktop] Histograms, meters, and timers are all counters
  2361. * ec045d4 [desktop] Zero out histogram metrics if count is zero
  2362. * 9a5c191 [desktop] Allow web metrics to be disabled
  2363. * 5872262 [desktop] Progress on script to generate mdl config
  2364. * a61a2a7 [desktop] Write metrics to a file
  2365. * 23cca8f [HUE-2750] [metastore] Show comments in the database and table views
  2366. * 76e3000 [hive] Support parameters in multi queries
  2367. * 31cf206 Merge pull request #224 from TheClimateCorporation/add-metrics-support
  2368. * 565522e [core] Fix for multiple Ace link tooltips issue
  2369. * c938a41 [core] Fix unicode string for KO escaping issue
  2370. * ea72e6e setting cluster information uri to /info
  2371. * 997da22 [spark] Only show the assist panel when there is a base URL set
  2372. * dabea20 [core] Fix autocomplete issue with keywords in table names
  2373. * 6c8cd82 HUE-2863 [livy] Rewrite repl to eliminate races to the interpreter
  2374. * ecf9eee HUE-2923 [livy] Allow multiple commands to queue up
  2375. * 99d265b [livy] Update README to add Python/R min versions, headers to example
  2376. * c6495be Add scalatra-metrics support to livy
  2377. * 2fcbafa HUE-2879 [oozie] Adding a dryrun before submitting workflow or coordinator
  2378. * c0a4351 HUE-2933 [oozie] Autofill the nominal_time in the SLA if the workflow is submitted manually
  2379. * 25ca4ff HUE-2897 [useradmin] Skip tests on live clusters that rely on db collation
  2380. * ed86765 [useradmin] Sort users by username to make test consistent
  2381. * 70794dc [pig] Import SkipTest
  2382. * a974d3d [oozie] Update tests to sort nodes to make it consistent
  2383. * 8a0012e [beeswax] Only try to delete database in tests if it exists
  2384. * d9aebab [desktop] Clear secret_key_script if live cluster has it enabled
  2385. * ceb3589 [desktop] Update test_app_permissions to handle certain apps being disabled in a live cluster
  2386. * 14b2aa6 [sentry] Skip tests if sentry-site.xml is not present
  2387. * f6aacf0 [beeswax,useradmin] Fix typo
  2388. * 071a4ee [metastore] Fix the is_live_cluster check
  2389. * 75a663a [desktop] Silence many Document.objects.sync warnings when table doesn't exist yet
  2390. * ad90949 [core] Extended _ko to the whole Hue
  2391. * 73085c8 [core] Add global util _ko to do i18n on inlike KO bindings
  2392. * 15b1d8c HUE-2832 [livy] Make session timeout configurable
  2393. * b327979 [tools] Initial import of wrk stress tester
  2394. * cde6a6a HUE-2916 [fb] Change URL-routing
  2395. * 6ad754a [beeswax] Fixed display of Settings form fields
  2396. * f096ce0 [spark] Improved UX for automatic add of snippet after execute
  2397. * 83ed16b [core] Improved indication when a filter is active in the assist panel
  2398. * ddb9b50 [spark] Show errors in unstyled list
  2399. * 37e656f HUE-2920 [core] Fix issue with assist not showing tables from selected database
  2400. * 2511e96 [spark] Improved autocomplete
  2401. * 1a9d4df [hive] Do not create test DBs if they already exists
  2402. * bfdf46c HUE-2673 [spark] Show error if session timeouts at creation
  2403. * 5ce3dc6 [spark] Provide the batch arguments as a list to livy
  2404. * e5e78f7 HUE-2877 [desktop] Add pyasn1 and ndg_httpsclient to support SSL Server Name Indication
  2405. * 4af95b9 [spark] Fix error reported by scatter plot
  2406. * 699eb65 [spark] Fix issue when there are not images in the result
  2407. * 7a28f59 HUE-2641 [spark] Display error lines
  2408. * 03c30a3 [livy] Fix compiling Livy on buildbots
  2409. * 00fac4f [useradmin] Fix useradmin test
  2410. * 19be850 [livy] Allow RDDs to be used with %json magic
  2411. * 6a1feb6 [livy] Minor cleanup of Spark Interpreter
  2412. * 68df878 [livy] Add some documentation
  2413. * b0c3bd3 [livy] Spark Interpreter should implement Interpreter
  2414. * 26ff525 HUE-2917 [livy] Allow scala RDDs to be inspected with %table
  2415. * 62420de HUE-2917 [livy] Implement scala spark introspection
  2416. * 30e7764 [pig] Fix import in tests
  2417. * 5a48fde HUE-2897 [useradmin] Skip unicode and case sensitive tests when live cluster testing
  2418. * 2fa8274 [beeswax] Don't check history hostname when live cluster testing
  2419. * 43f7f29 HUE-2902 [tests] Skip non re-entrant tests when live cluster testing for now
  2420. * a96837f HUE-2896 [tools] Insert Hue app dependencies before system dependencies
  2421. * 03ca307 [spark] Corrected Hive/Impala table and column ordering and fixed a JS bug on autocomplete after paste
  2422. * 8d35e49 [spark] Ignore case for Hive and Impala autocomplete
  2423. * aa23f4a [spark] Adjust the snippet type for the placeholders
  2424. * b8d402e [core] Remove the gray background of the active line in the Ace editor
  2425. * d4c9cd0 [core] Allow styling of the Ace placeholder
  2426. * a22fea5 HUE-2642 [spark] Automatically open a new snippet on execute of the last snippet
  2427. * 940a73d [spark] Show the correct snippet name in the snippet header
  2428. * 4e5fb20 HUE-2891 [notebook] Integrate images from R
  2429. * 3f58f86 HUE-2908 [livy] Partially address multiline commands
  2430. * ebef7ef [oozie] Fixed spinner on bulk actions and removed multiple click handler calls
  2431. * 916ac54 [spark] Moved and restyled errors
  2432. * 2c07ba7 HUE-2894 [livy] Shut down and server repl if process dies or exception thrown in server.
  2433. * b7b7ba5 HUE-2664 [jobbrowser] Fix fetching logs from job history server
  2434. * cc5c08c HUE-2903 [oozie] Fix error with Workflow parameter on rerun
  2435. * 93f1cb7 [jobbrowser] Add Application Type to jobs list
  2436. * 0933b8f [search] Fix Marker Map zoom filtering
  2437. * b457c4f [notebook] Also rename the type of the snippets in the example
  2438. * 2a93dac [livy] Expose even more SparkR plotting tools
  2439. * b782c35 [livy] Fix running "cat(3)" in SparkR
  2440. * c5346fa HUE-2892 [notebook] Disable $ variables for R
  2441. * 51074bd [livy] Explicitly depend on commons-codec
  2442. * 2e44a33 [livy] Strip SparkR out the ANSI control characters before checking marker
  2443. * 0d00f65 [core] Support for fields autocomplete in Ace after a . in non-live mode
  2444. * 234841a HUE-2893 [desktop] Backport CherryPy SSL file upload fix
  2445. * a723235 HUE-2889 [livy] Add some magic to render server side R plots
  2446. * 616cf17 [core] Introduce Filebrowser and Metastore links on Ace Editor
  2447. * 5a061b4 HUE-2668 [notebook] Switch session kind alias from python to pyspark, scala to spark
  2448. * 1c741af HUE-2311 [oozie] Inform user from cause of workflow submission failure
  2449. * 46fdb83 [core] Ace autocomplete now matches the start of the word
  2450. * fc6758f [hive] wait_for_query_to_finish should return a response in the tests
  2451. * c930c53 [sentry] Do not show the add privilege button on Browse view for non admin
  2452. * b14b642 [hive] Make it up to the caller to check for the status of a query in tests
  2453. * 5326efb [doc] Add good indentation to the list of main changes
  2454. Contributors
  2455. ------------
  2456. This Hue release is made possible thanks to the contribution from:
  2457. - Aaron Newton
  2458. - Aaron T. Myers
  2459. - abec
  2460. - Abraham Elmahrek
  2461. - Aditya Acharya
  2462. - airokey
  2463. - Alex Breshears
  2464. - Alex Newman
  2465. - Alex (posi) Newman
  2466. - alheio
  2467. - alphaskade
  2468. - Ambreen Kazi
  2469. - Amit Kabra
  2470. - Andrei Savu
  2471. - Andrew Bayer
  2472. - Andrew Yao
  2473. - Ann McCown
  2474. - Antonio Bellezza
  2475. - arahuja
  2476. - Ashu Pachauri
  2477. - Atupal
  2478. - Avindra Goolcharan
  2479. - bcwalrus
  2480. - bc Wong
  2481. - Ben Bishop
  2482. - Ben Gooley
  2483. - Ben White
  2484. - Bhargava Kalathuru
  2485. - Bruce Mitchener
  2486. - Bruno Mahé
  2487. - bwang
  2488. - Chris Conner
  2489. - Chris Stephens
  2490. - Christopher Conner
  2491. - Christopher McConnell
  2492. - Christopherwq Conner
  2493. - Craig Minihan
  2494. - cwalet
  2495. - Daehan Kim
  2496. - dbeech
  2497. - Derek Chen-Becker
  2498. - Dominik Gehl
  2499. - Eli Collins
  2500. - Enrico Berti
  2501. - Erick Tryzelaar
  2502. - fatherfox
  2503. - gdgt
  2504. - Gilad Wolff
  2505. - grundprinzip
  2506. - Guido Serra
  2507. - happywind
  2508. - Harsh
  2509. - Harsh J
  2510. - Henry Robinson
  2511. - Igor Wiedler
  2512. - Ilkka Turunen
  2513. - Istvan
  2514. - Ivan Orlov
  2515. - Jaguar Xiong
  2516. - Jakub Kukul
  2517. - Jarcek
  2518. - jeff.melching
  2519. - Jenny Kim
  2520. - Joe Crobak
  2521. - Joey Echeverria
  2522. - Johan Ahlen
  2523. - Johan Åhlén
  2524. - Jon Natkins
  2525. - Josh Walters
  2526. - Karissa McKelvey
  2527. - Kevin Wang
  2528. - krish
  2529. - Lars Francke
  2530. - linchan-ms
  2531. - Linden Hillenbrand
  2532. - Luca Natali
  2533. - Luke Carmichael
  2534. - lvziling
  2535. - Marcus McLaughlin
  2536. - Mariusz Strzelecki
  2537. - Matías Javier Rossi
  2538. - Michael Prim
  2539. - Michal Ferlinski
  2540. - Michalis Kongtongk
  2541. - Mobin Ranjbar
  2542. - motta
  2543. - mrmrs
  2544. - Nicolas Fouché
  2545. - Olaf Flebbe
  2546. - Oren Mazor
  2547. - oxpa
  2548. - Pala M Muthaia Chettiar
  2549. - Patricia Sz
  2550. - Patrycja Szabłowska
  2551. - Paul Battaglia
  2552. - Paul McCaughtry
  2553. - Peter Slawski
  2554. - Philip Zeyliger
  2555. - Piotr Ackermann
  2556. - Prasad Mujumdar
  2557. - Qi Xiao
  2558. - raphi
  2559. - Renxia Wang
  2560. - Rick Bernotas
  2561. - Ricky Saltzer
  2562. - Romain Rigaux
  2563. - Roman Shaposhnik
  2564. - Rui Pereira
  2565. - Sai Chirravuri
  2566. - Scott Kahler
  2567. - Sean Mackrory
  2568. - Shawn Van Ittersum
  2569. - shobull
  2570. - Shrijeet
  2571. - Shrijeet Paliwal
  2572. - Shuo Diao
  2573. - Siddhartha Sahu
  2574. - Simon Beale
  2575. - Simon Whittaker
  2576. - sky4star
  2577. - Stephanie Bodoff
  2578. - Suhas Satish
  2579. - Tatsuo Kawasaki
  2580. - thinker0
  2581. - Thomas Aylott
  2582. - Tianjin Gu
  2583. - Todd Lipcon
  2584. - Tom Mulder
  2585. - Vadim Markovtsev
  2586. - van Orlov
  2587. - vinithra
  2588. - voyageth
  2589. - vybs
  2590. - William Bourque
  2591. - wilson
  2592. - Word
  2593. - Xhxiong
  2594. - xq262144
  2595. - Yixiao Lin
  2596. - Yoer
  2597. - Zachary York
  2598. - Zach York
  2599. - Zhihai Xu