File tree Expand file tree Collapse file tree 7 files changed +13
-13
lines changed
crates/wazuh-cert-oauth2-client/src/services Expand file tree Collapse file tree 7 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ incremental = false
4949strip = true
5050
5151[workspace .package ]
52- version = " 0.2.23-rc.5 "
52+ version = " 0.3.0 "
5353edition = " 2024"
5454license = " MIT"
5555publish = false
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.2.25
18+ version : 0.3.0
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
24- appVersion : " 0.2.23 "
24+ appVersion : " 0.3.0 "
2525
2626home : https://github.com/ADORSYS-GIS/wazuh-cert-oauth2
2727
Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.2.27
18+ version : 0.3.0
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
2222# follow Semantic Versioning. They should reflect the version the application is using.
2323# It is recommended to use it with quotes.
24- appVersion : " 0.2.23 "
24+ appVersion : " 0.3.0 "
2525
2626home : https://github.com/ADORSYS-GIS/wazuh-cert-oauth2
2727
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ async fn write_with_permissions(
3838 #[ cfg( unix) ]
3939 {
4040 // Create with 0640 on Unix; best-effort on other platforms
41- std_opts. mode ( 0o640 ) ;
41+ std_opts. mode ( 0o644 ) ;
4242 }
4343 let mut file = std_opts. open ( file_path) . await ?;
4444 file. write_all ( contents. as_ref ( ) ) . await ?;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ $ErrorActionPreference = "Stop"
55# Default log level and application details
66$LOG_LEVEL = if ($env: LOG_LEVEL -ne $null ) { $env: LOG_LEVEL } else { " INFO" }
77$APP_NAME = if ($env: APP_NAME -ne $null ) { $env: APP_NAME } else { " wazuh-cert-oauth2-client" }
8- $DEFAULT_WOPS_VERSION = " 0.2.23-rc.5 "
8+ $DEFAULT_WOPS_VERSION = " 0.3.0 "
99$WOPS_VERSION = if ($env: WOPS_VERSION -ne $null ) { $env: WOPS_VERSION } else { $DEFAULT_WOPS_VERSION }
1010$OSSEC_CONF_PATH = if ($env: OSSEC_CONF_PATH -ne $null ) { $env: OSSEC_CONF_PATH } else { " C:\Program Files (x86)\ossec-agent\ossec.conf" }
1111$USER = " root"
Original file line number Diff line number Diff line change 1010# Default log level and application details
1111LOG_LEVEL=${LOG_LEVEL:- INFO}
1212APP_NAME=${APP_NAME:- " wazuh-cert-oauth2-client" }
13- WOPS_VERSION=${WOPS_VERSION:- " 0.2.23-rc.5 " }
13+ WOPS_VERSION=${WOPS_VERSION:- " 0.3.0 " }
1414USER=" root"
1515GROUP=" wazuh"
1616
You can’t perform that action at this time.
0 commit comments