From 9b7f8325f218048b1ad1dcc88aa7344ad6d57bda Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 11:13:27 +0300 Subject: [PATCH 1/6] NEON_PROXY_PKG_VERSION = '0.5.2' --- proxy/plugin/solana_rest_api.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/plugin/solana_rest_api.py b/proxy/plugin/solana_rest_api.py index 983a8958b..8c2e7142f 100644 --- a/proxy/plugin/solana_rest_api.py +++ b/proxy/plugin/solana_rest_api.py @@ -47,7 +47,7 @@ modelInstanceLock = threading.Lock() modelInstance = None -NEON_PROXY_PKG_VERSION = '0.5.2-dev' +NEON_PROXY_PKG_VERSION = '0.5.2' NEON_PROXY_REVISION = 'NEON_PROXY_REVISION_TO_BE_REPLACED' diff --git a/setup.py b/setup.py index 7d8e87305..bcec2bcb8 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ """ from setuptools import setup, find_packages -VERSION = (0, 5, 1) +VERSION = (0, 5, 2) __version__ = '.'.join(map(str, VERSION[0:3])) __description__ = '''⚡⚡⚡Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging.''' From dc03edc13530a984c12d05b1e3da9c433d480d64 Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 11:32:01 +0300 Subject: [PATCH 2/6] latest->stable --- .buildkite/steps/build-image.sh | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/steps/build-image.sh b/.buildkite/steps/build-image.sh index a67344b9f..104ffc621 100755 --- a/.buildkite/steps/build-image.sh +++ b/.buildkite/steps/build-image.sh @@ -4,7 +4,7 @@ set -euo pipefail REVISION=$(git rev-parse HEAD) set ${SOLANA_REVISION:=v1.7.9-testnet} -set ${EVM_LOADER_REVISION:=latest} +set ${EVM_LOADER_REVISION:=stable} # Refreshing neonlabsorg/solana:latest image is required to run .buildkite/steps/build-image.sh locally docker pull neonlabsorg/solana:${SOLANA_REVISION} diff --git a/Dockerfile b/Dockerfile index a1abf84f3..19cbbe0e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG SOLANA_REVISION=v1.7.9-testnet -ARG EVM_LOADER_REVISION=latest +ARG EVM_LOADER_REVISION=stable FROM neonlabsorg/solana:${SOLANA_REVISION} AS cli From 4f204709f4ecceb06fdcf9924b0216f5d259a711 Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 17:15:06 +0300 Subject: [PATCH 3/6] 0.5.3 --- proxy/plugin/solana_rest_api.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/plugin/solana_rest_api.py b/proxy/plugin/solana_rest_api.py index 8c2e7142f..95d4dc081 100644 --- a/proxy/plugin/solana_rest_api.py +++ b/proxy/plugin/solana_rest_api.py @@ -47,7 +47,7 @@ modelInstanceLock = threading.Lock() modelInstance = None -NEON_PROXY_PKG_VERSION = '0.5.2' +NEON_PROXY_PKG_VERSION = '0.5.3' NEON_PROXY_REVISION = 'NEON_PROXY_REVISION_TO_BE_REPLACED' diff --git a/setup.py b/setup.py index bcec2bcb8..81fd89a79 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ """ from setuptools import setup, find_packages -VERSION = (0, 5, 2) +VERSION = (0, 5, 3) __version__ = '.'.join(map(str, VERSION[0:3])) __description__ = '''⚡⚡⚡Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging.''' From 8b96a88fbbd98ac7f81b351e5eac570446348435 Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 22:31:59 +0300 Subject: [PATCH 4/6] 0.5.3-dev --- proxy/plugin/solana_rest_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/plugin/solana_rest_api.py b/proxy/plugin/solana_rest_api.py index 95d4dc081..8f72a04ec 100644 --- a/proxy/plugin/solana_rest_api.py +++ b/proxy/plugin/solana_rest_api.py @@ -47,7 +47,7 @@ modelInstanceLock = threading.Lock() modelInstance = None -NEON_PROXY_PKG_VERSION = '0.5.3' +NEON_PROXY_PKG_VERSION = '0.5.3-dev' NEON_PROXY_REVISION = 'NEON_PROXY_REVISION_TO_BE_REPLACED' From 940ace058f823e8fb6ebf84f9ceb372f9797cca9 Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 22:36:15 +0300 Subject: [PATCH 5/6] 0.5.4-dev --- proxy/plugin/solana_rest_api.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/plugin/solana_rest_api.py b/proxy/plugin/solana_rest_api.py index 8f72a04ec..eece7a454 100644 --- a/proxy/plugin/solana_rest_api.py +++ b/proxy/plugin/solana_rest_api.py @@ -47,7 +47,7 @@ modelInstanceLock = threading.Lock() modelInstance = None -NEON_PROXY_PKG_VERSION = '0.5.3-dev' +NEON_PROXY_PKG_VERSION = '0.5.4-dev' NEON_PROXY_REVISION = 'NEON_PROXY_REVISION_TO_BE_REPLACED' diff --git a/setup.py b/setup.py index 81fd89a79..f5b8b98e6 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ """ from setuptools import setup, find_packages -VERSION = (0, 5, 3) +VERSION = (0, 5, 4) __version__ = '.'.join(map(str, VERSION[0:3])) __description__ = '''⚡⚡⚡Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on Network monitoring, controls & Application development, testing, debugging.''' From 3c91a9cf3344ebb0438c83471e89dec19bfa2933 Mon Sep 17 00:00:00 2001 From: Vasiliy Zaznobin Date: Tue, 28 Dec 2021 22:39:40 +0300 Subject: [PATCH 6/6] latest --- .buildkite/steps/build-image.sh | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/steps/build-image.sh b/.buildkite/steps/build-image.sh index 104ffc621..a67344b9f 100755 --- a/.buildkite/steps/build-image.sh +++ b/.buildkite/steps/build-image.sh @@ -4,7 +4,7 @@ set -euo pipefail REVISION=$(git rev-parse HEAD) set ${SOLANA_REVISION:=v1.7.9-testnet} -set ${EVM_LOADER_REVISION:=stable} +set ${EVM_LOADER_REVISION:=latest} # Refreshing neonlabsorg/solana:latest image is required to run .buildkite/steps/build-image.sh locally docker pull neonlabsorg/solana:${SOLANA_REVISION} diff --git a/Dockerfile b/Dockerfile index 19cbbe0e1..a1abf84f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG SOLANA_REVISION=v1.7.9-testnet -ARG EVM_LOADER_REVISION=stable +ARG EVM_LOADER_REVISION=latest FROM neonlabsorg/solana:${SOLANA_REVISION} AS cli