Skip to content

Commit 04f54e5

Browse files
committed
update(deps): bump libs to 0.20.0 and driver to 8.0.0
Signed-off-by: Roberto Scolaro <[email protected]>
1 parent 384682a commit 04f54e5

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

cmake/modules/driver.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ else()
3131
# In case you want to test against another driver version (or branch, or commit) just pass the variable -
3232
# ie., `cmake -DDRIVER_VERSION=dev ..`
3333
if(NOT DRIVER_VERSION)
34-
set(DRIVER_VERSION "7.3.0+driver")
35-
set(DRIVER_CHECKSUM "SHA256=8f572d9a83feda635a3fa53b859d61e37af127c241e35068aadee3bc50d212c0")
34+
set(DRIVER_VERSION "8.0.0+driver")
35+
set(DRIVER_CHECKSUM "SHA256=f35990d6a1087a908fe94e1390027b9580d4636032c0f2b80bf945219474fd6b")
3636
endif()
3737

3838
# cd /path/to/build && cmake /path/to/source

cmake/modules/falcosecurity-libs.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ else()
3232
# In case you want to test against another falcosecurity/libs version (or branch, or commit) just pass the variable -
3333
# ie., `cmake -DFALCOSECURITY_LIBS_VERSION=dev ..`
3434
if(NOT FALCOSECURITY_LIBS_VERSION)
35-
set(FALCOSECURITY_LIBS_VERSION "0.19.0")
36-
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=77c38b45c8b29c4da4f8ce49da68278b347a403ff1075307ff0cf540596303ac")
35+
set(FALCOSECURITY_LIBS_VERSION "0.20.0")
36+
set(FALCOSECURITY_LIBS_CHECKSUM "SHA256=4ae6ddb42a1012bacd88c63abdaa7bd27ca0143c4721338a22c45597e63bc99d")
3737
endif()
3838

3939
# cd /path/to/build && cmake /path/to/source

userspace/chisel/chisel_api.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -842,10 +842,10 @@ int lua_cbacks::get_thread_table_int(lua_State *ls, bool include_fds, bool bareb
842842
lua_pushnumber(ls, (uint32_t)tinfo.m_fdlimit);
843843
lua_settable(ls, -3);
844844
lua_pushliteral(ls, "uid");
845-
lua_pushnumber(ls, (uint32_t)tinfo.m_user.uid());
845+
lua_pushnumber(ls, (uint32_t)tinfo.get_user()->uid);
846846
lua_settable(ls, -3);
847847
lua_pushliteral(ls, "gid");
848-
lua_pushnumber(ls, (uint32_t)tinfo.m_group.gid());
848+
lua_pushnumber(ls, (uint32_t)tinfo.get_group()->gid);
849849
lua_settable(ls, -3);
850850
lua_pushliteral(ls, "nchilds");
851851
lua_pushnumber(ls, (uint32_t)tinfo.get_num_not_leader_threads());
@@ -873,7 +873,7 @@ int lua_cbacks::get_thread_table_int(lua_State *ls, bool include_fds, bool bareb
873873
// Extract the user name
874874
//
875875
lua_pushliteral(ls, "username");
876-
lua_pushstring(ls, tinfo.m_user.name().c_str());
876+
lua_pushstring(ls, tinfo.get_user()->name);
877877
lua_settable(ls, -3);
878878

879879
//

0 commit comments

Comments
 (0)