1. 02 1月, 2020 2 次提交
  2. 31 12月, 2019 1 次提交
  3. 16 12月, 2019 1 次提交
  4. 11 12月, 2019 1 次提交
  5. 09 12月, 2019 3 次提交
  6. 06 12月, 2019 2 次提交
  7. 28 11月, 2019 3 次提交
  8. 27 11月, 2019 4 次提交
  9. 26 11月, 2019 14 次提交
  10. 25 11月, 2019 3 次提交
    • N
      b49d06e4
    • A
      Encrypt application settings with pre and post deployments · 4cb93023
      Arturo Herrero 提交于
      We had concerns about the cached values on Redis with the previous two
      releases strategy:
      
      First release (this commit):
        - Create new encrypted fields in the database.
        - Start populating new encrypted fields, read the encrypted fields or
          fallback to the plaintext fields.
        - Backfill the data removing the plaintext fields to the encrypted
          fields.
      Second release:
        - Remove the virtual attribute (created in step 2).
        - Drop plaintext columns from the database (empty columns after
          step 3).
      
      We end up with a better strategy only using migration scripts in one
      release:
        - Pre-deployment migration: Add columns required for storing encrypted
          values.
        - Pre-deployment migration: Store the encrypted values in the new
          columns.
        - Post-deployment migration: Remove the old unencrypted columns
      4cb93023
    • H
      Escape namespace in label references · ddfdc0dc
      Heinrich Lee Yu 提交于
      When referencing cross-namespace labels, we append the namespace name
      to the rendered label.
      
      This MR escapes the name to prevent XSS attacks.
      ddfdc0dc
  11. 22 11月, 2019 1 次提交
  12. 21 11月, 2019 1 次提交
    • A
      Encrypt application setting tokens · a8855e21
      Arturo Herrero 提交于
      This is the plan to encrypt the plaintext tokens:
      
      First release (this commit):
        1. Create new encrypted fields in the database.
        2. Start populating new encrypted fields, read the encrypted fields or
           fallback to the plaintext fields.
        3. Backfill the data removing the plaintext fields to the encrypted fields.
      
      Second release:
        4. Remove the virtual attribute (created in step 2).
        5. Drop plaintext columns from the database (empty columns after step 3).
      a8855e21
  13. 20 11月, 2019 4 次提交