Skip to content
This repository has been archived by the owner on Nov 22, 2023. It is now read-only.

Latest commit

 

History

History
224 lines (169 loc) · 7.75 KB

CHANGELOG.md

File metadata and controls

224 lines (169 loc) · 7.75 KB

v0.10.1: 2019-09-06

  • Added new paginated Expiring Secrets API endpoint to the automation client (#506)

  • Fixed Maven release plugin config (#499)

  • Updated dependencies

    • auto-value updated to 1.6.6
    • bcpg-jdk15on updated to 1.62
    • guava updated to 28.1-jre
    • jcommander updated to 1.78
    • jooq.version updated to 3.12

v0.10.0: 2019-07-29 [YANKED]

  • Added missing index on the memberships table (#401)

  • Added database-enforced uniqueness constraint on secret names and renaming of secrets when deleted (#408, #403)

  • Added command to permanently delete soft-deleted secrets (which can be invoked using the following: java -jar $KEYWHIZ_JAR drop-deleted-secrets --deleted-before <DATE> --sleep-millis 1000 $CONFIG) (#406)

  • Added HMAC on database rows to detect tampering, including backfill job for updating systems already in operation. (#461, #462)

  • Removed support for H2 (#444)

  • Removed CSRF-related code, since Keywhiz doesn't have web UI anymore. (#417)

  • Removed docs generation using Swagger (#402)

  • Added dependencies

    • auto-value-annotations 1.6.5
  • Updated dependencies

    • assertj-core updated to 3.13.2
    • assertj-guava updated to 3.2.1
    • auto-service updated to 1.0-rc6
    • auto-value to 1.6.5
    • bcprov-jdk15on updated to 1.62
    • commons-lang3 updated to 3.9
    • dropwizard.version updated to 1.3.14
    • easymock updated to 4.0.2
    • flyway-core updated to 5.2.4
    • flyway-maven-plugin updated to 5.2.4
    • guava updated to 28.0-jre
    • hibernate-validator updated to 5.4.3.Final
    • httpcore updated to 4.4.11
    • h2 updated to 1.4.199
    • jackson-databind to 2.9.9.1
    • jackson-annotations to 2.9.9
    • jaxb-api updated to 2.4.0-b180830.0359
    • jaxb-jxc updated to 2.4.0-b180830.0438
    • jaxb-runtime updated to 2.4.0-b180830.0438
    • jcommander updated to 1.72
    • findbugs-maven-plugin updated to 3.0.5
    • jooq.version updated to 3.11.12
    • jpgpj updated to 0.6.1
    • maven-checkstyle-plugin updated to 3.1.0
    • maven-compiler-plugin updated to 3.8.1
    • maven-failsafe-plugin updated to 2.22.2
    • maven-javadoc-plugin updated to 3.1.1
    • maven-source-plugin updated to 3.1.0
    • maven-surefire-plugin updated to 2.22.2
    • mockito-core updated to 3.0.0
    • mysql-connector-java updated to 5.1.48
    • okhttp updated to 3.14.2
    • okhttp-urlconnection updated to 3.14.2
    • slf4j.version updated to 1.7.28
    • unboundid-ldapsdk updated to 4.0.11

v0.9.0: 2018-11-07 [YANKED]

  • Migrated to JDK 11 (now required to build Keywhiz)

  • Added tracking of expiration of client certificates in the DB (#369)

  • Added endpoint for encrypted group backup that allows to perform automated backups of secrets for groups that are required for bootstrapping a new datacenter by periodically calling the endpoint to produce a GPG-encrypted archive. The GPG key that is used for export should ideally be kept offline, only to be used in an emergency situation. (#361)

  • Added an endpoint for retrieving a SanitizedSecret by name (#359)

  • Improved BCrypt hash check on login (#374)

  • Fixed building Docker image (#382 and #383)

  • Removed PostgreSQL support (#347)

  • Updated dependencies

    • dropwizard updated to 1.2.9
    • guice updated to 4.2.2
    • jackson updated to 2.9.6
    • jooq updated to 3.11.5
    • mysql updated to 5.1.45
    • logback updated to 1.2.3
    • slf4j updated to 1.7.25
    • powermock updated to 1.7.4
    • updated dropwizard-raven to 1.2.0
    • flyway updated to 4.2.0
    • easymock updated to 3.6
    • unboundid-ldapsdk updated to 4.0.1
    • okhttp updated to 3.9.1
    • mockito updated to 2.23.0
    • hibernate-validator updated to 5.3.4
    • jBcrypt updated to 0.4.1
    • guava updated to 23.5
    • auto-value updated to 1.5.4
    • maven-shade-plugin updated to 3.0.0
    • javax.annotation-api added
    • jaxb-api added
    • jaxb-runtime added
    • jaxb-xjc added
    • jaxb-jxc added

v0.8.0: 2017-06-27

  • Removed old Web UI.

  • Added secret versioning, to allow updating secrets.

  • Added tracking of expiration dates of secrets.

  • Added tracking HMACs of secret content so clients can intelligently fetch secrets only when they've changed.

  • Added an audit log interface to provide tracking of all changes made.

  • Many small bugfixes and changes.

v0.7.9: 2015-11-10

  • Various fixes related to MySQL.

    Note: We modified a flyway migration file. The checksum was changed from 330484744 to -1043629835. Ping us in the unlikely event that you are affected by this change and need help to resolve things.

  • Fixed a bug in the cli.

  • Foreign keys were removed and cascading deletes are handled by Keywhiz instead of the database engine. This is more flexible.

  • Support for bigint, you can now enjoy 9,223,372,036,854,775,807 secrets!

  • Replaced OffsetDateTime with long (epoch in seconds). We no longer track data creation/mutation at the fractional seconds granularity.

v0.7.8: 2015-10-27

  • New automation API (/automation/v2/). Reduces amount of data fetched from database and returned in the response based on experience using the older API. Uses seconds since epoch to represent createdAt and updatedAt timestamps, which should be more cross-language friendly.

  • Ensures consistent date serialization in old API.

  • Replaces postgres JDBC driver with pgjdbc-ng (https://github.com/impossibl/pgjdbc-ng).

  • Fixes a privacy bug which would allow unauthorized access to the list of clients and secrets associated with a given group. The contents of the secrets were never exposed.

v0.7.6: 2015-06-22

  • Updates bcrypt version to fix potential integer overflow issue, see CVE-2015-0886.

  • Improves SQL queries by not fetching data which is subsequently not used.

  • #116: Early precondition checks in KeywhizClient. Moves base64'ing of request from CLI -> KeywhizClient.

  • Switches AES-GCM's IV to be 12 bytes instead of 16. Potentially helps with interoperability with other libraries.

v0.7.5: 2015-06-08

  • Fixes a bug which would cause the server to throw an exception in some cases instead of returning a secret.

v0.7.4: 2015-06-08

  • Added support for H2 and MySQL. H2 should make development easier since it's an embedded database. This was achieved by switching the SQL layer from JDBI to jOOQ.

  • Lots of improvements to the cli tool:

    • Fixed a bug which could cause the tool to be unusable for some users due to the way the session data was being stored and read from the file.
    • Changed the default url to https://localhost:4444/ (users can override with --url). Generated new default certificates (in PKCS12 format) which contain localhost.
    • Embedded the development trust store (--devTrustStore) making it easier to get started without having to worry about file paths or having to generate certs.
    • Added the ability to specify the username on the command line (--user).
    • Removed a bunch of old & unused openssl files.
    • Fixed bug where assign would mistakenly work multiple times and unassign would mistakenly fail thinking no assignment was present.
  • Updated dependencies

    • guice updated to 4.0
    • jooq updated to 3.6.2
    • logback updated to 1.1.3
    • jcommander updated to 1.48
    • jackson updated to 2.5.3
    • auto-value updated to 1.1
    • okhttp updated to 2.4.0
    • dropwizard-java8 modules updated to 0.8.0-2
    • commons-lang3 updated to 3.4
    • assertj-guava updated to 1.3.1
    • easymock updated to 3.3.1
    • flyway updated to 3.2.1
    • powermock updated to 1.6.2
    • mockito updated to 1.10.19
    • slf4j updated to 1.7.12
    • h2 updated to 1.4.187
    • mysql added

v0.7.3: 2015-04-08

  • First open source release