Skip to content

Commit efc402c

Browse files
committed
Update documentation for 1.8.0 release
1 parent 3168c7f commit efc402c

File tree

2 files changed

+37
-96
lines changed

2 files changed

+37
-96
lines changed

build.moxie

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Gitblit
1010
description: pure Java Git solution
1111
groupId: com.gitblit
1212
artifactId: gitblit
13-
version: 1.7.2-SNAPSHOT
13+
version: 1.8.0-SNAPSHOT
1414
inceptionYear: 2011
1515

1616
# Current stable release

releases.moxie

Lines changed: 36 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -8,107 +8,48 @@ r29: {
88
note: ~
99
html: ~
1010
text: ~
11-
security: ~
12-
fixes:
13-
- Fix exception when viewing a ticket with a patchset where the integration branch does not exist (issue-521, ticket-212)
14-
- Fix exception when deleting a repository using the FileTicketService (issue-522, ticket-213)
15-
- Do not inject team repository permissions as explicit user permissions when editing a user (issue-462, ticket-214)
16-
- Whitelist the target link attribute in the XSS filter (ticket-216)
17-
- Strip line breaks from pasted SSH keys (ticket-245)
18-
- Fix project sorting (pr-287)
19-
- Fix Lucene indexing of tags (pr-291)
20-
- Prevent session fixation for external authentication (pr-908)
21-
- Encode email subject as UTF-8 (pr-929)
22-
- Do not automatically trim passwords (pr-932)
23-
- Fix nested repository detection in raw servlet (pr-950, pr-957)
24-
- Raw servlet will now assume text/plain for dot files (pr-956)
11+
security:
12+
- Fixed bug in My Tickets which would expose ticket metadata (title, type, etc) for private repos. (pr-1040)
13+
fixes:
14+
- Fix HTML5 date input support (pr-982)
15+
- Honor disable ticket repository setting (pr-1045)
16+
- Fix paging on filestore items (pr-1070)
17+
- Fix redirects on session loss (pr-1087)
18+
- Fix always searching all repositories (pr-1060)
19+
- Fix RPC list branches for requests without admin powers (pr-994)
20+
- Fix baseURL handling when generating urls (pr-1086)
21+
- Fix my tickets ignoring repo read permissions (pr-1040)
22+
- Fix bug where jgit.packedGitOpenFiles was not properly set (pr-1049)
23+
- Fix encoding of JavaDoc
2524
changes:
26-
- Replaced Dagger with Guice (ticket-80)
27-
- Use release name as root directory in Gitblit GO artifacts (ticket-109)
28-
- Split gitblit.properties into gitblit.properties & defaults.properties (ticket-110)
29-
- Show team type in teams page (pr-217, ticket-168)
30-
- Relocate the repository Delete button (ticket-225)
31-
- Improve diff performance by gracefully limiting large diffs (pr-226)
32-
- Add granular settings to disable display of git transport urls (pr-274)
33-
- Use author date to be consistent with other tools (pr-919)
25+
- Sort filestore by most recent first (pr-1061)
26+
- Improve the document editor tablet support (pr-1062)
27+
- Improve HTTP header authentication (pr-980)
28+
- Improve authentication logging (pr-981)
29+
- Improve logic of handling dot files in the raw servlet (pr-983)
30+
- Change Jenkins Groovy script to support any protocol (pr-986)
31+
- Remove empty catch blocks swallowing exceptions during authentication (pr-979)
32+
- Various documentation improvements
3433
additions:
35-
- Add GitHub Octicons (ticket-106)
36-
- Support for chain-loading properties files (ticket-110)
37-
- Add Priority & Severity fields for tickets (pr-220, ticket-157)
38-
- Add Maintenance ticket type (pr-223, ticket-206)
39-
- Add commitdiff option to ignore whitespace (ticket-233)
40-
- Add configurable tab length for blob views (ticket-253)
41-
- Implement image diffs (pr-229)
42-
- Add support for configurable HTTP proxy host/port in PluginManager (pr-235)
43-
- Implement collapsed empty folder navigation (pr-241)
44-
- Implement hashing to detect usermodel changes and reduce users.conf file I/O (pr-246)
45-
- Add support for Kerberos5/GSS authentication to SSH (pr-254)
46-
- Allow extraction of additional user metadata in request headers when using external or container authentication (pr-255)
47-
- Allow custom host & port specification for advertised SSH urls (pr-268)
48-
- Improve logging for fail2ban usage (pr-296)
49-
- Initial implementation of Git-LFS (pr-921)
50-
- Add "all" repositories parameter to Search page (pr-935)
51-
dependencyChanges:
52-
- Guice 4.0 (ticket-80, ticket-219)
53-
- SLF4j 1.7.12
54-
- gson 2.3.1
55-
- Freemarker 2.3.22
56-
- Lucene 4.10.0 (ticket-159)
57-
- SSHD 1.0.0
58-
- JGit 4.1.1
59-
- Groovy 2.4.4
60-
- Wicket 1.4.22
61-
- BouncyCastle 1.52
62-
- Pegdown 1.5.0
63-
- Jetty 9.2.13
64-
settings:
65-
- { name: web.displayUserPanel, defaultValue: 'true' }
66-
- { name: web.tabLength, defaultValue: 4 }
67-
- { name: web.avatarClass, defaultValue: '' }
68-
- { name: web.showHttpServletUrls, defaultValue: 'true' }
69-
- { name: web.showGitDaemonUrls, defaultValue: 'true' }
70-
- { name: web.showSshDaemonUrls, defaultValue: 'true' }
71-
- { name: web.advertiseAccessPermissionForOtherUrls, defaultValue: 'false' }
72-
- { name: web.maxDiffLinesPerFile, defaultValue: '4000' }
73-
- { name: web.maxDiffLines, defaultValue: '20000' }
74-
- { name: ssh.advertisedHost, defaultValue: '' }
75-
- { name: ssh.advertisedPort, defaultValue: '' }
76-
- { name: git.sshWithKrb5, defaultValue: '' }
77-
- { name: git.sshKrb5Keytab, defaultValue: '' }
78-
- { name: git.sshKrb5ServicePrincipalName, defaultValue: '' }
79-
- { name: git.sshKrb5StripDomain, defaultValue: 'true' }
80-
- { name: filestore.storageFolder, defaultValue: '${baseFolder}/lfs' }
81-
- { name: filestore.maxUploadSize, defaultValue: '-1' }
82-
- { name: plugins.httpProxyHost, defaultValue: '' }
83-
- { name: plugins.httpProxyPort, defaultValue: '' }
84-
- { name: plugins.httpProxyAuthorization, defaultValue: '' }
85-
- { name: realm.container.autoAccounts.displayName, defaultValue: '' }
86-
- { name: realm.container.autoAccounts.emailAddress, defaultValue: '' }
87-
- { name: realm.container.autoAccounts.locale, defaultValue: '' }
88-
- { name: realm.container.autoAccounts.adminRole, defaultValue: '' }
34+
- Delete patchset feature (pr-1039)
35+
- Support ticket references from tickets and commits on other branches (pr-1048)
36+
- YouTrack Groovy push hook (pr-1084)
37+
dependencyChanges:
38+
- Prosemirror 0.6.1
8939

9040
contributors:
91-
- James Moger
92-
- David Ostrovsky
93-
- Alex Lewis
94-
- Florian Zschocke
9541
- Paul Martin
96-
- razzard
97-
- Alexander Zabluda
98-
- Marcin Cieślak
99-
- Rainer W
100-
- Vitaliy Filippov
101-
- willyann
102-
- enrico204
42+
- James Moger
43+
- dsteinkopf
44+
- mereth
45+
- metasim
46+
- stummb
47+
- RedShift1
48+
- dbywalec
10349
- mrjoel
104-
- Fabrice Bacchella
105-
- Milos Cubrilo
106-
- Thomas Wolf
107-
- Morten Bøgeskov
108-
- Steven Oliver
109-
- Dariusz Bywalec
110-
- Jan Šmucr
111-
-paladox
50+
- yyjdelete
51+
- rgroux
52+
- pingunaut
11253
}
11354

11455
#

0 commit comments

Comments
 (0)