1. 28 Mar, 2019 5 kayıt (commit)
    • Ulysses Souza's avatar
      Merge pull request #2299 from ulyssessouza/3.7.2-release · a4c251d2
      Ulysses Souza yazdı
      Bump 3.7.2 release
      a4c251d2
    • Ulysses Souza's avatar
      Bump 3.7.2 · 8f2d9a56
      Ulysses Souza yazdı
      Signed-off-by: 's avatarUlysses Souza <ulysses.souza@docker.com>
      8f2d9a56
    • Ian Campbell's avatar
      scripts/version.py: Use regex grouping to extract the version · cd59491b
      Ian Campbell yazdı
      The `lstrip` and `rstrip` functions take a set of characters to remove, not a
      prefix/suffix. Thus `rstrip('-x86_64')` will remove any trailing characters in
      the string `'-x86_64'` in any order (in effect it strips the suffix matching
      the regex `[-_x468]*`). So with `18.09.4` it removes the `4` suffix resulting
      in trying to `int('')` later on:
      
          Traceback (most recent call last):
            File "/src/scripts/versions.py", line 80, in <module>
              main()
            File "/src/scripts/versions.py", line 73, in main
              versions, reverse=True, key=operator.attrgetter('order')
            File "/src/scripts/versions.py", line 52, in order
              return (int(self.major), int(self.minor), int(self.patch)) + stage
          ValueError: invalid literal for int() with base 10: ''
      
      Since we no longer need to check for the arch suffix (since it no longer
      appears in the URLs we are traversing) we could just drop the `rstrip` and
      invent a local prefix stripping helper to replace `lstrip('docker-')`. Instead
      lets take advantage of the behaviour of `re.findall` which is that if the regex
      contains a single `()` match that will be returned. This lets us match exactly
      the sub-section of the regex we require.
      
      While editing the regex, also ensure that the suffix is precisely `.tgz` and
      not merely `tgz` by adding an explicit `\.`, previously the literal `.` would
      be swallowed by the `.*` instead.
      Signed-off-by: 's avatarIan Campbell <ijc@docker.com>
      cd59491b
    • Ulysses Souza's avatar
      Fix base_url to keep TCP protocol · b05bfd7b
      Ulysses Souza yazdı
      This fix lets the responsability of changing the
      protocol to `parse_host` afterwards, letting
      `base_url` with the original value.
      Signed-off-by: 's avatarUlysses Souza <ulysses.souza@docker.com>
      b05bfd7b
    • Ulysses Souza's avatar
      Xfail test_attach_stream_and_cancel on TLS · 33b8fd6e
      Ulysses Souza yazdı
      This test is quite flaky on ssl integration test
      Signed-off-by: 's avatarUlysses Souza <ulysses.souza@docker.com>
      33b8fd6e
  2. 20 Mar, 2019 5 kayıt (commit)
  3. 10 Ock, 2019 2 kayıt (commit)
  4. 09 Ock, 2019 19 kayıt (commit)
  5. 29 Ara, 2018 1 kayıt (commit)
  6. 28 Ara, 2018 1 kayıt (commit)
  7. 27 Ara, 2018 2 kayıt (commit)
  8. 20 Ara, 2018 2 kayıt (commit)
  9. 14 Ara, 2018 2 kayıt (commit)
  10. 11 Ara, 2018 1 kayıt (commit)