mirror of
https://github.com/xtr-dev/rondevu-client.git
synced 2025-12-10 02:43:25 +00:00
Remove origin bucketing feature
- Remove origin option from client configuration - Simplify API client to not send Origin header - Version 0.3.4 Origin-based session isolation has been removed from the server, so this feature is no longer needed on the client side. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@xtr-dev/rondevu-client",
|
"name": "@xtr-dev/rondevu-client",
|
||||||
"version": "0.3.3",
|
"version": "0.3.4",
|
||||||
"description": "TypeScript client for Rondevu peer signaling and discovery server",
|
"description": "TypeScript client for Rondevu peer signaling and discovery server",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
|||||||
@@ -62,7 +62,7 @@ export class Rondevu {
|
|||||||
private async checkServerVersion(): Promise<void> {
|
private async checkServerVersion(): Promise<void> {
|
||||||
try {
|
try {
|
||||||
const { version: serverVersion } = await this.api.health();
|
const { version: serverVersion } = await this.api.health();
|
||||||
const clientVersion = '0.3.3'; // Should match package.json
|
const clientVersion = '0.3.4'; // Should match package.json
|
||||||
|
|
||||||
if (!this.isVersionCompatible(clientVersion, serverVersion)) {
|
if (!this.isVersionCompatible(clientVersion, serverVersion)) {
|
||||||
console.warn(
|
console.warn(
|
||||||
|
|||||||
Reference in New Issue
Block a user