Skip to content
Snippets Groups Projects
  1. Jan 13, 2020
  2. Jan 10, 2020
  3. Jan 02, 2020
  4. Dec 31, 2019
  5. Dec 16, 2019
  6. Dec 10, 2019
  7. Dec 09, 2019
  8. Dec 06, 2019
  9. Nov 27, 2019
  10. Nov 26, 2019
  11. Nov 25, 2019
    • Nick Thomas's avatar
    • Arturo Herrero's avatar
      Encrypt application settings with pre and post deployments · 4cb93023
      Arturo Herrero authored
      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
    • Heinrich Lee Yu's avatar
      Escape namespace in label references · ddfdc0dc
      Heinrich Lee Yu authored
      When referencing cross-namespace labels, we append the namespace name
      to the rendered label.
      
      This MR escapes the name to prevent XSS attacks.
      ddfdc0dc
  12. Nov 22, 2019
Loading