gologin 2.1.28 → 2.1.29

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,7 +2,14 @@
2
2
 
3
3
  Combined changelog for GoLogin node.js SDK
4
4
 
5
- ## [2.1.27] 2025-07-10
5
+ ## [2.1.29] 2025-07-11
6
+
7
+
8
+ ### Fixes
9
+
10
+ * Free proxy support on orbita 135+
11
+
12
+ ## [2.1.28] 2025-07-10
6
13
 
7
14
 
8
15
  ### Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gologin",
3
- "version": "2.1.28",
3
+ "version": "2.1.29",
4
4
  "description": "A high-level API to control Orbita browser over GoLogin API",
5
5
  "types": "./index.d.ts",
6
6
  "main": "./src/gologin.js",
package/src/gologin.js CHANGED
@@ -327,6 +327,11 @@ export class GoLogin {
327
327
  }
328
328
 
329
329
  proxyServer += `${profileData.proxy.host}:${profileData.proxy.port}`;
330
+
331
+ if (profileData.proxy.mode === 'gologin') {
332
+ proxyServer = profileData.autoProxyServer;
333
+ }
334
+
330
335
  preferences.proxy = {
331
336
  ...preferences.proxy,
332
337
  mode: 'fixed_servers',