1. 01 3月, 2018 1 次提交
  2. 08 9月, 2017 1 次提交
  3. 07 9月, 2017 4 次提交
  4. 06 9月, 2017 7 次提交
  5. 05 9月, 2017 6 次提交
  6. 04 9月, 2017 1 次提交
  7. 03 9月, 2017 6 次提交
  8. 01 9月, 2017 4 次提交
  9. 31 8月, 2017 2 次提交
    • N
      Rework the permissions model for SSH key restrictions · 68470602
      Nick Thomas 提交于
      `allowed_key_types` is removed and the `minimum_<type>_bits` fields are
      renamed to `<tech>_key_restriction`. A special sentinel value (`-1`) signifies
      that the key type is disabled.
      
      This also feeds through to the UI - checkboxes per key type are out, inline
      selection of "forbidden" and "allowed" (i.e., no restrictions) are in.
      
      As with the previous model, unknown key types are disallowed, even if the
      underlying ssh daemon happens to support them. The defaults have also been
      changed from the lowest known bit size to "no restriction". So if someone
      does happen to have a 768-bit RSA key, it will continue to work on upgrade, at
      least until the administrator restricts them.
      68470602
    • N
      Add settings for minimum key strength and allowed key type · b0f982fb
      Nick Thomas 提交于
      This is an amalgamation of:
      
      * Cory Hinshaw: Initial implementation !5552
      * Rémy Coutable: Updates !9350
      * Nick Thomas: Resolve conflicts and add ED25519 support !13712
      b0f982fb
  10. 25 8月, 2017 1 次提交
  11. 22 8月, 2017 5 次提交
  12. 20 8月, 2017 1 次提交
    • S
      Fix Error 500s when attempting to destroy a protected tag · 718ecd4e
      Stan Hu 提交于
      Due to a missing `on_delete: :cascade`, users would hit the error that
      looked like:
      
      ```
      PG::ForeignKeyViolation: ERROR: update or delete on table "protected_tags"
      violates foreign key constraint "fk_rails_f7dfda8c51" on table
      "protected_tag_create_access_levels" DETAIL: Key (id)=(1385) is still
      referenced from table "protected_tag_create_access_levels". : DELETE FROM
      "protected_tags" WHERE "protected_tags"."id" = 1385
      ```
      
      Closes #36013
      718ecd4e
  13. 16 8月, 2017 1 次提交