1. 20 Feb, 2015 3 commits
    • Mikio Hara's avatar
      net, syscall: more accurate parsers for routing messages on BSD variants · 69275eef
      Mikio Hara authored
      This changes fixes two issues with regard to handling routing messages
      as follows:
      - Misparsing on platforms (such as FreeBSD) supporting multiple
        architectures in the same kernel (kern.supported_archs="amd64 i386")
      - Misparsing with unimplemented messages such as route, interface
        address state notifications
      
      To fix those issues, this change implements all the required socket
      address parsers, adds a processor architecture identifying function to
      FreeBSD and tests.
      
      Fixes #9707.
      Fixes #8203.
      
      Change-Id: I7ed7b4a0b6f10f54b29edc681a2f35603f2d8d45
      Reviewed-on: https://go-review.googlesource.com/4330Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
      69275eef
    • Ingo Oeser's avatar
      cmd/go: simplify/fix handling private github repos · 668762c5
      Ingo Oeser authored
      Before Go 1.4, the traditional way to work with a private Github
      repository was to run something similar the following:
      
      ```
      git config --global url."git@github.com:".insteadOf "https://github.com/"
      ```
      
      It would allow go get and friends to transparently work as expected,
      automatically rewriting https URLs to use SSH for auth. This worked both
      when pushing and pulling.
      
      In Go 1.4 this broke, now requiring the use of `go get -f` instead of `go get`
      in order to fetch private repositories. This seems neither intended nor
      practical, as it requires changing a lot of tooling.
      
      So just use `git config remote.origin.url` instead of `git remote -v` as
      this reflects the actual substitution intended in the `insteadOf` config
      directive.
      
      Also remove now useless parsing.
      
      Also add a check against supported schemes to avoid errors in later
      commands using this URL and expecting such a scheme.
      
      Fixes #9697
      
      Change-Id: I907327f83504302288f913a68f8222a5c2d673ee
      Reviewed-on: https://go-review.googlesource.com/3504Reviewed-by: 's avatarAndrew Gerrand <adg@golang.org>
      668762c5
    • Russ Cox's avatar
      doc: dummy commit in go1.5.txt · ea1306a1
      Russ Cox authored
      Change-Id: I678336daf99f7d7d19f99506f1a604de8e05bf43
      Reviewed-on: https://go-review.googlesource.com/5400Reviewed-by: 's avatarRuss Cox <rsc@golang.org>
      ea1306a1
  2. 19 Feb, 2015 14 commits
  3. 18 Feb, 2015 8 commits
  4. 17 Feb, 2015 12 commits
  5. 16 Feb, 2015 3 commits