Skip to content

Commit

Permalink
1.31.4
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-timcu committed Jul 5, 2024
1 parent f42848a commit 03456ad
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ aikido-*-extension-php-*.so
.vscode/settings.json
src/extension/ndDb2pJ5Px
*.deb
package/deb/opt/aikido/aikido-1.31.3*
package/deb/opt/aikido/aikido-1.31.4*
src/agent/aikido_config.json
2 changes: 1 addition & 1 deletion include/php_aikido.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
extern zend_module_entry aikido_module_entry;
# define phpext_aikido_ptr &aikido_module_entry

# define PHP_AIKIDO_VERSION "1.31.3"
# define PHP_AIKIDO_VERSION "1.31.4"

# if defined(ZTS) && defined(COMPILE_DL_AIKIDO)
ZEND_TSRMLS_CACHE_EXTERN()
Expand Down
2 changes: 1 addition & 1 deletion package/deb/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: aikido-firewall-php
Version: 1.31.3
Version: 1.31.4
Section: base
Priority: optional
Architecture: all
Expand Down
2 changes: 1 addition & 1 deletion package/deb/DEBIAN/postinst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

VERSION="1.31.3"
VERSION="1.31.4"

declare -A php_api_versions

Expand Down
2 changes: 1 addition & 1 deletion package/rpm/aikido.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: aikido-php-firewall
Version: 1.31.3
Version: 1.31.4
Release: 1
Summary: Aikido PHP extension and agent

Expand Down
2 changes: 1 addition & 1 deletion rpm_build_and_install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
rm -rf ~/rpmbuild
rpmdev-setuptree

VERSION="1.31.3"
VERSION="1.31.4"

mkdir -p ~/rpmbuild/SOURCES/aikido-php-firewall-$VERSION
cp -rf package/rpm/etc ~/rpmbuild/SOURCES/aikido-php-firewall-$VERSION/
Expand Down
2 changes: 1 addition & 1 deletion rpm_uninstall.sh
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rpm -e aikido-php-firewall-1.31.3-1.x86_64
rpm -e aikido-php-firewall-1.31.4-1.x86_64
2 changes: 1 addition & 1 deletion src/agent/globals/constants.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package globals

const (
Version = "1.31.3"
Version = "1.31.4"
ConfigFilePath = "/opt/aikido/config.json"
DevConfigFilePath = "/opt/aikido/config-dev.json"
LogFilePath = "/var/log/aikido/aikido.log"
Expand Down
1 change: 1 addition & 0 deletions src/lib/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ func Init(initJson string) (initOk bool) {

log.Debug("Init: ", initJson)

grpc.Init()
go grpc.OnReceiveToken()
go grpc.OnReceiveLogLevel()

Expand Down

0 comments on commit 03456ad

Please sign in to comment.