Skip to content

Commit 830fe2c

Browse files
authored
Merge branch 'main' into jadi/continue-on-missing-data
2 parents 5074465 + 7761376 commit 830fe2c

File tree

9 files changed

+24
-9
lines changed

9 files changed

+24
-9
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
matrix:
55-
language: ['javascript-typescript', 'rust']
55+
language: ['javascript-typescript']
5656

5757
# Skip autobuild - CodeQL can analyze source code directly
5858
# No need to compile or install dependencies for static analysis

bin/env

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
# (The "." will execute this inside the current shell instead of creating a child one)
1111

1212
set -a
13-
source ${1:-.env}
13+
# shellcheck source=/dev/null
14+
source "${1:-.env}"
1415
set +a

packages/protocol-devtools-solana/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @layerzerolabs/protocol-devtools-solana
22

3+
## 8.0.6
4+
5+
### Patch Changes
6+
7+
- c45bec8: shell linting
8+
39
## 8.0.5
410

511
### Patch Changes

packages/protocol-devtools-solana/bin/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
if [ -z "${LZ_DEVTOOLS_ENABLE_SOLANA_TESTS}" ]; then
44
echo 'Solana tests can be enabled by setting LZ_DEVTOOLS_ENABLE_SOLANA_TESTS environment variable to a non-empty value'
55
else
6-
jest --ci $@
6+
jest --ci "$@"
77
fi

packages/protocol-devtools-solana/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@layerzerolabs/protocol-devtools-solana",
3-
"version": "8.0.5",
3+
"version": "8.0.6",
44
"description": "Utilities for LayerZero Solana protocol programs",
55
"repository": {
66
"type": "git",

packages/ua-devtools-solana/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @layerzerolabs/ua-devtools-solana
22

3+
## 8.0.7
4+
5+
### Patch Changes
6+
7+
- c45bec8: shell linting
8+
- Updated dependencies [c45bec8]
9+
- @layerzerolabs/protocol-devtools-solana@8.0.6
10+
311
## 8.0.6
412

513
### Patch Changes

packages/ua-devtools-solana/bin/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
if [ -z "${LZ_DEVTOOLS_ENABLE_SOLANA_TESTS}" ]; then
44
echo 'Solana tests can be enabled by setting LZ_DEVTOOLS_ENABLE_SOLANA_TESTS environment variable to a non-empty value'
55
else
6-
jest --ci --pass-with-no-tests $@
6+
jest --ci --pass-with-no-tests "$@"
77
fi

packages/ua-devtools-solana/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@layerzerolabs/ua-devtools-solana",
3-
"version": "8.0.6",
3+
"version": "8.0.7",
44
"description": "Utilities for LayerZero Solana projects",
55
"repository": {
66
"type": "git",
@@ -47,7 +47,7 @@
4747
"@layerzerolabs/lz-v2-utilities": "^3.0.148",
4848
"@layerzerolabs/oft-v2-solana-sdk": "^3.0.59",
4949
"@layerzerolabs/protocol-devtools": "~3.0.2",
50-
"@layerzerolabs/protocol-devtools-solana": "~8.0.5",
50+
"@layerzerolabs/protocol-devtools-solana": "~8.0.6",
5151
"@layerzerolabs/test-devtools": "~0.4.7",
5252
"@layerzerolabs/test-devtools-solana": "~0.0.5",
5353
"@layerzerolabs/ua-devtools": "~5.0.2",
@@ -78,7 +78,7 @@
7878
"@layerzerolabs/lz-v2-utilities": "^3.0.148",
7979
"@layerzerolabs/oft-v2-solana-sdk": "^3.0.59",
8080
"@layerzerolabs/protocol-devtools": "^3.0.2",
81-
"@layerzerolabs/protocol-devtools-solana": "~8.0.5",
81+
"@layerzerolabs/protocol-devtools-solana": "~8.0.6",
8282
"@layerzerolabs/ua-devtools": "^5.0.2",
8383
"@solana/web3.js": "^1.95.8",
8484
"fp-ts": "^2.16.2",

pnpm-lock.yaml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)