This commit is contained in:
Eugene Yokota 2014-08-22 02:56:04 -04:00
parent 8af683a1f8
commit fc504d87d7
1 changed files with 12 additions and 3 deletions

View File

@ -50,12 +50,16 @@
[1465]: https://github.com/sbt/sbt/issues/1465
[1524]: https://github.com/sbt/sbt/issues/1524
[1530]: https://github.com/sbt/sbt/issues/1530
[1536]: https://github.com/sbt/sbt/pull/1536
[1546]: https://github.com/sbt/sbt/pull/1546
[@benmccann]: https://github.com/benmccann
[@dansanduleac]: https://github.com/dansanduleac
[@2m]: https://github.com/2m
[@pvlugter]: https://github.com/pvlugter
[@eed3si9n]: https://github.com/eed3si9n
[@evgeny-goldin]: https://github.com/evgeny-goldin
[@gkossakowski]: https://github.com/gkossakowski
[@jsuereth]: https://github.com/jsuereth
[@benjyw]: https://github.com/benjyw
[@xuwei-k]: https://github.com/xuwei-k
@ -73,7 +77,7 @@
### Fixes with compatibility implications
- Maven Central Repository now defaults to HTTPS. [#1494][1494] by [@rtyley][@rtyley]
- Maven Central Repository now defaults to HTTPS. [#1494][1494] by [@rtyley][@rtyley] (See below)
- `ThisProject` used to resolve to the root project in a build even when it's place in `subproj/build.sbt`. sbt 0.13.6 fixes it to resolve to the sub project. [#1194][1194]/[#1358][1358] by [@dansanduleac][@dansanduleac]
- Global plugins classpath used to be injected into every build. This will no longer be the case. [#1347][1347]/[#1352][1352] by [@dansanduleac][@dansanduleac]
- Fixes `newer` command in scripted. [#1419][1419] by [@jroper][@jroper]
@ -93,7 +97,8 @@
- Allows keys defined inside `build.sbt` to be used from sbt shell. [#1059][1059]/[#1456][1456]
- Updates internal Ivy instance to cache the results of dependency exclusion rules. [#1476][1476] by [@eed3si9n][@eed3si9n]
- Adds `Resolver.jcenterRepo` and `Resolver.bintrayRepo(owner, repo)` to add Bintray easier. [#1405][1405] by [@evgeny-goldin][@evgeny-goldin]
- AutoPlugins with no requirements enabled by allRequirements can now be disable dby the user. [#1516][1516] by [@jsuereth]
- AutoPlugins with no requirements enabled by allRequirements can now be disable dby the user. [#1516][1516] by [@jsuereth][@jsuereth]
- Name hashing is enabled by default. [#1546][1546] by [@gkossakowski][@gkossakowski]
### Bug fixes
@ -115,7 +120,7 @@
- Fixes `NullPointerError` in tab completion by `FileExamples`. [#1530][1530] by [@eed3si9n][@eed3si9n]
- Fixes metabuild downloading unused Scala 2.10.2. [#1439][1439] by [@eed3si9n][@eed3si9n]
### Maven Central Repository defaults to HTTPS
### HTTPS related changes
Thanks to Sonatype, HTTPS access to Maven Central Repository is available to public. This is now enabled by default, but if HTTP is required for some reason the following system properties can be used:
@ -123,6 +128,10 @@ Thanks to Sonatype, HTTPS access to Maven Central Repository is available to pub
[#1494][1494] by [@rtyley][@rtyley]
Launcher also defaults to HTTPS address of the Typesafe repository.
[#1536][1536] by [@benmccann][@benmccann].
### enablePlugins/disablePlugins
sbt 0.13.6 now allows `enablePlugins` and `disablePlugins` to be written directly in `build.sbt`. [#1213][1213]/[#1312][1312] by [@jsuereth][@jsuereth]