Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,846 changes: 1,970 additions & 4,876 deletions ATTRIBUTIONS-Node.md

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions ATTRIBUTIONS-Python.md
Original file line number Diff line number Diff line change
Expand Up @@ -2910,7 +2910,7 @@ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
```

## langchain (1.3.0)
## langchain (1.3.2)

### Licenses
License: `MIT`
Expand Down Expand Up @@ -3010,7 +3010,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

## langchain-nvidia-ai-endpoints (1.3.0)
## langchain-nvidia-ai-endpoints (1.4.0)

### Licenses
License: `MIT`
Expand Down Expand Up @@ -3070,7 +3070,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
```

## langgraph (1.2.0)
## langgraph (1.2.2)

### Licenses
License: `MIT`
Expand Down
10 changes: 5 additions & 5 deletions integrations/openclaw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@
"./dist/index.js"
],
"compat": {
"pluginApi": ">=2026.5.12",
"minGatewayVersion": "2026.5.12"
"pluginApi": ">=2026.5.26",
"minGatewayVersion": "2026.5.26"
},
"build": {
"openclawVersion": "2026.5.12",
"pluginSdkVersion": "2026.5.12"
"openclawVersion": "2026.5.26",
"pluginSdkVersion": "2026.5.26"
}
},
"scripts": {
Expand All @@ -60,7 +60,7 @@
"test:live": "npm run build:test && node scripts/test-live.mjs"
},
"peerDependencies": {
"openclaw": ">=2026.5.12"
"openclaw": "^2026.5.26"
Comment thread
coderabbitai[bot] marked this conversation as resolved.
},
"dependencies": {
"nemo-relay-node": "0.3.0"
Expand Down
22 changes: 22 additions & 0 deletions integrations/openclaw/scripts/check-pack-payload.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,14 @@ function normalizePackagePath(value) {
return value.replace(/^\.\//, '').replaceAll('\\', '/');
}

/** Extract the OpenClaw release version from supported single-version specs. */
function normalizeOpenClawVersion(value, fieldName) {
assert(typeof value === 'string' && value.length > 0, `${fieldName} is required`);
const match = value.match(/^(?:\^|~|>=)?(\d+\.\d+\.\d+)$/);
assert(match, `${fieldName} must be a single OpenClaw release version`);
return match[1];
}

/** Recursively list files below a package-local directory. */
function walkFiles(root, prefix = '') {
const absoluteRoot = path.join(packageRoot, root, prefix);
Expand Down Expand Up @@ -135,6 +143,20 @@ assert(packageJson.openclaw?.compat?.minGatewayVersion, 'openclaw.compat.minGate
assert(packageJson.openclaw?.build?.openclawVersion, 'openclaw.build.openclawVersion is required');
assert(packageJson.openclaw?.build?.pluginSdkVersion, 'openclaw.build.pluginSdkVersion is required');

const expectedOpenClawVersion = normalizeOpenClawVersion(packageJson.peerDependencies?.openclaw, 'peerDependencies.openclaw');
for (const [fieldName, value] of [
['openclaw.compat.pluginApi', packageJson.openclaw.compat.pluginApi],
['openclaw.compat.minGatewayVersion', packageJson.openclaw.compat.minGatewayVersion],
['openclaw.build.openclawVersion', packageJson.openclaw.build.openclawVersion],
['openclaw.build.pluginSdkVersion', packageJson.openclaw.build.pluginSdkVersion],
]) {
const actualOpenClawVersion = normalizeOpenClawVersion(value, fieldName);
assert(
actualOpenClawVersion === expectedOpenClawVersion,
`${fieldName} must target peerDependencies.openclaw version ${expectedOpenClawVersion}`,
);
}

for (const file of packedFiles) {
assert(!file.startsWith('test/'), `packed package includes test artifact ${file}`);
assert(!file.startsWith('.test-dist/'), `packed package includes test output ${file}`);
Expand Down
Loading
Loading