##// END OF EJS Templates
merge changelog with default (added 1.1.4 version)
marcink -
r1097:ecf25535 beta
parent child Browse files
Show More
@@ -1,219 +1,232 b''
1 1 .. _changelog:
2 2
3 3 Changelog
4 4 =========
5 5
6 6 1.2.0 (**2011-XX-XX**)
7 7 ======================
8 8
9 9 :status: in-progress
10 10 :branch: beta
11 11
12 12 news
13 13 ----
14 14
15 15 - implemented #89 Can setup google analytics code from settings menu
16 16 - implemented #91 added nicer looking archive urls with more download options
17 17 like tags, branches
18 18 - implemented #44 into file browsing, and added follow branch option
19 19 - implemented #102 allowing '.' in username
20 20 - implemented #84 downloads can be enabled/disabled for each repository
21 21 - anonymous repository can be cloned without having to pass default:default
22 22 into clone url
23 23 - fixed #90 whoosh indexer can index chooses repositories passed in command
24 24 line
25 25 - extended journal with day aggregates and paging
26 26 - implemented #107 customizable code highlights on code sources
27 27 - implemented #93 customizable changelog on combined revision ranges -
28 28 equivalent of githubs compare view
29 29 - implemented #108 extended and more powerfull LDAP configuration
30 30 - implemented #56 users groups
31 31 - major code rewrites optimized codes for speed and memory usage
32 32 - raw and diff downloads are now in git format
33 33 - setup command checks for write access to given path
34 34
35 35 fixes
36 36 -----
37 37
38 38 - fixed file browser bug, when switching into given form revision the url was
39 39 not changing
40 40 - fixed propagation to error controller on simplehg and simplegit middlewares
41 41 - fixed error when trying to make a download on empty repository
42 42 - fixed problem with '[' chars in commit messages in journal
43 43 - fixed #99 Unicode errors, on file node paths with non utf-8 characters
44 44 - journal fork fixes
45 45 - removed issue with space inside renamed repository after deletion
46 46 - fixed strange issue on formencode imports
47 47
48 1.1.4 (**2011-02-19**)
49 ======================
50
51 news
52 ----
53
54 fixes
55 -----
56
57 - fixed formencode import problem on settings page, that caused server crash
58 when that page was accessed as first after server start
59 - journal fixes
60 - fixed option to access repository just by entering http://server/<repo_name>
48 61
49 62 1.1.3 (**2011-02-16**)
50 63 ======================
51 64
52 65 news
53 66 ----
54 67
55 68 - implemented #102 allowing the '.' character in username
56 69 - added option to access repository just by entering http://server/<repo_name>
57 70 - celery task ignores result for better performance
58 71
59 72 fixes
60 73 -----
61 74
62 75 - fixed ehlo command and non auth mail servers on smtp_lib. Thanks to
63 76 apollo13 and Johan Walles
64 77 - small fixes in journal
65 78 - fixed problems with getting setting for celery from .ini files
66 79 - registration, password reset and login boxes share the same title as main
67 80 application now
68 81 - fixed #113: to high permissions to fork repository
69 82 - fixed problem with '[' chars in commit messages in journal
70 83 - removed issue with space inside renamed repository after deletion
71 84 - db transaction fixes when filesystem repository creation failed
72 85 - fixed #106 relation issues on databases different than sqlite
73 86 - fixed static files paths links to use of url() method
74 87
75 88 1.1.2 (**2011-01-12**)
76 89 ======================
77 90
78 91 news
79 92 ----
80 93
81 94
82 95 fixes
83 96 -----
84 97
85 98 - fixes #98 protection against float division of percentage stats
86 99 - fixed graph bug
87 100 - forced webhelpers version since it was making troubles during installation
88 101
89 102 1.1.1 (**2011-01-06**)
90 103 ======================
91 104
92 105 news
93 106 ----
94 107
95 108 - added force https option into ini files for easier https usage (no need to
96 109 set server headers with this options)
97 110 - small css updates
98 111
99 112 fixes
100 113 -----
101 114
102 115 - fixed #96 redirect loop on files view on repositories without changesets
103 116 - fixed #97 unicode string passed into server header in special cases (mod_wsgi)
104 117 and server crashed with errors
105 118 - fixed large tooltips problems on main page
106 119 - fixed #92 whoosh indexer is more error proof
107 120
108 121 1.1.0 (**2010-12-18**)
109 122 ======================
110 123
111 124 news
112 125 ----
113 126
114 127 - rewrite of internals for vcs >=0.1.10
115 128 - uses mercurial 1.7 with dotencode disabled for maintaining compatibility
116 129 with older clients
117 130 - anonymous access, authentication via ldap
118 131 - performance upgrade for cached repos list - each repository has it's own
119 132 cache that's invalidated when needed.
120 133 - performance upgrades on repositories with large amount of commits (20K+)
121 134 - main page quick filter for filtering repositories
122 135 - user dashboards with ability to follow chosen repositories actions
123 136 - sends email to admin on new user registration
124 137 - added cache/statistics reset options into repository settings
125 138 - more detailed action logger (based on hooks) with pushed changesets lists
126 139 and options to disable those hooks from admin panel
127 140 - introduced new enhanced changelog for merges that shows more accurate results
128 141 - new improved and faster code stats (based on pygments lexers mapping tables,
129 142 showing up to 10 trending sources for each repository. Additionally stats
130 143 can be disabled in repository settings.
131 144 - gui optimizations, fixed application width to 1024px
132 145 - added cut off (for large files/changesets) limit into config files
133 146 - whoosh, celeryd, upgrade moved to paster command
134 147 - other than sqlite database backends can be used
135 148
136 149 fixes
137 150 -----
138 151
139 152 - fixes #61 forked repo was showing only after cache expired
140 153 - fixes #76 no confirmation on user deletes
141 154 - fixes #66 Name field misspelled
142 155 - fixes #72 block user removal when he owns repositories
143 156 - fixes #69 added password confirmation fields
144 157 - fixes #87 RhodeCode crashes occasionally on updating repository owner
145 158 - fixes #82 broken annotations on files with more than 1 blank line at the end
146 159 - a lot of fixes and tweaks for file browser
147 160 - fixed detached session issues
148 161 - fixed when user had no repos he would see all repos listed in my account
149 162 - fixed ui() instance bug when global hgrc settings was loaded for server
150 163 instance and all hgrc options were merged with our db ui() object
151 164 - numerous small bugfixes
152 165
153 166 (special thanks for TkSoh for detailed feedback)
154 167
155 168
156 169 1.0.2 (**2010-11-12**)
157 170 ======================
158 171
159 172 news
160 173 ----
161 174
162 175 - tested under python2.7
163 176 - bumped sqlalchemy and celery versions
164 177
165 178 fixes
166 179 -----
167 180
168 181 - fixed #59 missing graph.js
169 182 - fixed repo_size crash when repository had broken symlinks
170 183 - fixed python2.5 crashes.
171 184
172 185
173 186 1.0.1 (**2010-11-10**)
174 187 ======================
175 188
176 189 news
177 190 ----
178 191
179 192 - small css updated
180 193
181 194 fixes
182 195 -----
183 196
184 197 - fixed #53 python2.5 incompatible enumerate calls
185 198 - fixed #52 disable mercurial extension for web
186 199 - fixed #51 deleting repositories don't delete it's dependent objects
187 200
188 201
189 202 1.0.0 (**2010-11-02**)
190 203 ======================
191 204
192 205 - security bugfix simplehg wasn't checking for permissions on commands
193 206 other than pull or push.
194 207 - fixed doubled messages after push or pull in admin journal
195 208 - templating and css corrections, fixed repo switcher on chrome, updated titles
196 209 - admin menu accessible from options menu on repository view
197 210 - permissions cached queries
198 211
199 212 1.0.0rc4 (**2010-10-12**)
200 213 ==========================
201 214
202 215 - fixed python2.5 missing simplejson imports (thanks to Jens Bäckman)
203 216 - removed cache_manager settings from sqlalchemy meta
204 217 - added sqlalchemy cache settings to ini files
205 218 - validated password length and added second try of failure on paster setup-app
206 219 - fixed setup database destroy prompt even when there was no db
207 220
208 221
209 222 1.0.0rc3 (**2010-10-11**)
210 223 =========================
211 224
212 225 - fixed i18n during installation.
213 226
214 227 1.0.0rc2 (**2010-10-11**)
215 228 =========================
216 229
217 230 - Disabled dirsize in file browser, it's causing nasty bug when dir renames
218 231 occure. After vcs is fixed it'll be put back again.
219 232 - templating/css rewrites, optimized css. No newline at end of file
General Comments 0
You need to be logged in to leave comments. Login now