Skip to content

Commit

Permalink
Released 2.5.0 via make release
Browse files Browse the repository at this point in the history
  • Loading branch information
nemacysts committed Sep 17, 2024
1 parent f7a7b7e commit 3c64a6e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Edit this release and run "make release"
RELEASE=2.4.2
RELEASE=2.5.0

SHELL=/bin/bash

Expand Down
17 changes: 17 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
tron (2.5.0) jammy; urgency=medium

* 2.5.0 tagged with 'make release'
Commit: Attempt to batch config loading for deployments (#996)
Right now we make at most 2N calls to the Tron API during config
deployments: N to get the current configs and at most N if all
services have changes. To start, I"d like to reduce this to N by
allowing GET /api/config to return all the configs so that the only
requests needed are POSTs for changed configs. Depending on how
this goes, we can look into batching up the POSTs so that we can
also do that in a single request. In terms of speed, it looks like
loading all the configs from pnw-prod (on my devbox) with this new
behavior takes ~3s - which isn"t great, but there"s a decent bit of
file IO going on here :(

-- Luis Perez <[email protected]> Tue, 17 Sep 2024 08:25:15 -0700

tron (2.4.2) jammy; urgency=medium

* 2.4.2 tagged with 'make release'
Expand Down
2 changes: 1 addition & 1 deletion tron/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
# setup phase, the dependencies may not exist on disk yet.
#
# Don't bump version manually. See `make release` docs in ./Makefile
__version__ = "2.4.2"
__version__ = "2.5.0"

0 comments on commit 3c64a6e

Please sign in to comment.