chore(deps): update homebrew formula cvent/hogan to v0.15.0 #11
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.11.2
->v0.15.0
Release Notes
cvent/hogan (cvent/hogan)
v0.15.0
: -- Caching ReduxCompare Source
This release reworks how caching works on the hogan server and lays the groundwork for a fully configurable caching strategy.
We are also re-introducing the LRU in-memory cache which will help with performance when the sqlite db is on a shared network drive.
v0.14.0
: -- No more collisionsCompare Source
This release has a few larger changes:
heads
route will return both the original 7 characters of the sha and the full shav0.13.3
: -- Redis TLSCompare Source
Add support for Redis TLS. Connections strings that are using TLS should start with
rediss
v0.13.2
: -- RedisCompare Source
This release adds in the ability to better control the caching layers within hogan. Default setting now is just an internal LRU cache.
You have the ability to configure (in addition to the LRU) a Redis cache and/or a sqlite cache. The order of precedence is:
Running
hogan server --help
will document all of the available parameters.v0.13.1
: Cache environment targetsCompare Source
A performance issue we encountered involved requesting environments that do not exist in a particular SHA. This would result in a cache miss and a lock to verify if the environment was present in the git repo. With this change we now do a lookup for the environment in the environment listing before checking for the environment in the configuration cache. This allows us to respond very quickly with a 404 when the environment does not exist (and can never exist) within the requested SHA.
We have also added in the cache layering from the main branch and recurring db cleanup. The default cache TTL is 90 days. and cleanup will be run once every 24 hours. TTL can be configured using the
--db-max-age
parameter.v0.13.0
: -- No more nullCompare Source
This release removes all
null
values from the rendered configuration. This will not cause any issues with existing transforms asnull
was rendered the same as a missing key. No null keys will be shown on the config routes. In strict mode errors will be thrown for bothnull
and missing keys.v0.12.6
Compare Source
Dependency cleanup and upgrades
v0.12.5
Compare Source
Add pruning to the maintenance phase as well.
v0.12.4
: 0.12.4 Prune on FetchCompare Source
With this release we update our dependencies and added the functionality to prune remote branches on each fetch.
v0.12.3
Compare Source
This is a small release that updates dependencies and improves some error reporting when using strict mode.
v0.12.2
: Fix DependenciesCompare Source
This release brings our tokio dependency in line with the latest actix-web.
v0.12.1
: More Git FlagsCompare Source
This release adds two new CLI flags which allow you to control how native git is utilized.
native-fetch
will allow fetching using native git andnative-clone
will allow native git to perform the initial cloning operation.v0.12.0
: Git MaintenanceCompare Source
This release adds the option to rely on utilizing the cli version of git in addition to libgit2.
The main motivation behind this is that the cli version of git has proven to be faster during fetch and clone operations. Additionally, the cli version of git will perform maintenance against the underlying repo.
The default docker container now will include the cli git as a dependency.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.