Skip to content

Commit

Permalink
2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
tudor-timcu committed Jul 12, 2024
1 parent b23d39c commit 26e95e2
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 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
libphp-extension/ndDb2pJ5Px
*.deb
package/deb/opt/aikido/aikido-2.0.1*
package/deb/opt/aikido/aikido-2.0.2*
lib/agent/aikido_config.json
2 changes: 1 addition & 1 deletion include/3rdparty/json.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2965,7 +2965,7 @@ namespace detail
@pre The search string @a f must not be empty. **This precondition is
enforced with an assertion.**

@since version 2.0.1
@since version 2.0.2
*/
template<typename StringType>
inline void replace_substring(StringType& s, const StringType& f,
Expand Down
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 "2.0.1"
# define PHP_AIKIDO_VERSION "2.0.2"

# if defined(ZTS) && defined(COMPILE_DL_AIKIDO)
ZEND_TSRMLS_CACHE_EXTERN()
Expand Down
2 changes: 1 addition & 1 deletion lib/agent/globals/constants.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package globals

const (
Version = "2.0.1"
Version = "2.0.2"
ConfigFilePath = "/opt/aikido/config.json"
DevConfigFilePath = "/opt/aikido/config-dev.json"
LogFilePath = "/var/log/aikido/aikido_agent.log"
Expand Down
2 changes: 1 addition & 1 deletion lib/agent/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ func AgentInit(initJson string) (initOk bool) {
log.Init()
log.Infof("Aikido Agent v%s loaded!", globals.Version)

config.Init(initJson)
machine.Init()
config.Init(initJson)
go grpc.Init()
return true
}
Expand Down
2 changes: 1 addition & 1 deletion lib/request-processor/globals/globals.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ var InitData struct {
}

const (
Version = "2.0.1"
Version = "2.0.2"
)
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: 2.0.1
Version: 2.0.2
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="2.0.1"
VERSION="2.0.2"

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: 2.0.1
Version: 2.0.2
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="2.0.1"
VERSION="2.0.2"

mkdir -p ~/rpmbuild/SOURCES/aikido-php-firewall-$VERSION
cp -rf package/rpm/opt ~/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-2.0.1-1.x86_64
rpm -e aikido-php-firewall-2.0.2-1.x86_64

0 comments on commit 26e95e2

Please sign in to comment.