Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required (VERSION 3.12)
#########

cmake_policy( SET CMP0048 NEW ) # version in project()
project( Dripline VERSION 2.10.9 )
project( Dripline VERSION 2.10.10 )

list( APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/scarab/cmake )

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG img_repo=python
ARG img_tag=3.12.1-slim-bookworm
ARG img_tag=3.14.2-slim-trixie

# This FROM line includes a label so that the dependencies can be built by themselves by using the `--target` argument of `docker build`
FROM ${img_repo}:${img_tag} AS base
Expand Down
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ Types of changes: Added, Changed, Deprecated, Removed, Fixed, Security

## [Unreleased]

## [2.10.10] -- 2026-01-21

### Changed

- Updated Scarab to v3.14.0 and made downstream changes
- Updated the base Docker image to 3.14.2-slim-trixie


## [2.10.9] - 2025-12-02

Expand Down
2 changes: 1 addition & 1 deletion examples/run_oscillator_service_endpoints.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LOGGER( dlog, "run_oscillation_service_endpoints" );
int main( int argc, char** argv )
{
// Start handling signals
scarab::signal_handler t_sig_hand;
scarab::signal_handler t_sig_hand( true );

scarab::main_app the_main;

Expand Down
2 changes: 1 addition & 1 deletion examples/run_oscillator_service_hub.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ LOGGER( dlog, "run_oscillation_service_hub" );
int main( int argc, char** argv )
{
// Start handling signals
scarab::signal_handler t_sig_hand;
scarab::signal_handler t_sig_hand( true );

scarab::main_app the_main;

Expand Down
2 changes: 1 addition & 1 deletion examples/run_simple_service.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ LOGGER( dlog, "simple_service" );
int main( int argc, char** argv )
{
// Start handling signals
scarab::signal_handler t_sig_hand;
scarab::signal_handler t_sig_hand( true );

scarab::main_app the_main;

Expand Down
2 changes: 1 addition & 1 deletion executables/dl-agent.cc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ using namespace dripline;
int main( int argc, char** argv )
{
// Start handling signals
scarab::signal_handler t_sig_hand;
scarab::signal_handler t_sig_hand( true );

// Create the application and agent objects
scarab::main_app the_main;
Expand Down
2 changes: 1 addition & 1 deletion executables/dl-mon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ LOGGER( dlog, "dl-mon" );
int main( int argc, char** argv )
{
// Start handling signals
scarab::signal_handler t_sig_hand;
scarab::signal_handler t_sig_hand( true );

// Create the application
scarab::main_app the_main;
Expand Down