Owen Schwartz
004c599c19
Merge pull request #302 from LaurenceJJones/fix/config-file-provision-save
...
fix: allow empty config file bootstrap before provisioning
Former-commit-id: 7e1e3408d5
2026-04-08 21:58:07 -04:00
Laurence
2ab9fb901a
fix: allow empty config file bootstrap before provisioning
...
Treat an empty CONFIG_FILE as initial state instead of failing JSON parse, so provisioning can proceed and credentials can be saved. Ref: fosrl/pangolin#2812
Former-commit-id: d7c3c38d24
2026-04-08 14:13:13 +01:00
Owen
3a0dd20bd3
Add CODEOWNERS
...
Former-commit-id: 27e471942e
2026-04-07 11:34:18 -04:00
Owen
1749d7c044
Delete bad bp
...
Former-commit-id: 184bfb12d6
2026-04-03 17:36:48 -04:00
Owen
c4711203f4
Remove files
...
Former-commit-id: 2e02c9b7a9
2026-04-03 16:49:09 -04:00
Owen
e3105ad4ce
Add provisioning blueprint file
...
Former-commit-id: f4d071fe27
2026-04-02 21:39:59 -04:00
Owen
05be670f1c
Send health checks to the server on reconnect
...
Former-commit-id: 8d82460a76
2026-03-31 17:06:07 -07:00
Owen
4ac3dea71b
Add name to provisioning
...
Former-commit-id: 5208117c56
2026-03-30 17:18:22 -07:00
Owen
c969f44071
Merge branch 'main' into logging-provision
...
Former-commit-id: 381f5a619c
2026-03-29 21:19:53 -07:00
Owen Schwartz
9293c71fb5
Merge pull request #285 from fosrl/dev
...
1.10.4
Former-commit-id: b6f13a1b55
1.10.4
2026-03-29 12:25:10 -07:00
Owen
c191ff6cad
Add chain id to ping
...
Former-commit-id: cdaf4f7898
2026-03-29 12:00:17 -07:00
Owen
74b7caf7ec
Merge branch 'main' into dev
...
Former-commit-id: d4a5ac8682
2026-03-29 11:40:34 -07:00
Owen
ee1911709f
Add chainId based dedup
...
Former-commit-id: 1057013b50
2026-03-27 11:55:34 -07:00
Owen
2cf60d0fdb
Allow blueprint interpolation for env vars
...
Former-commit-id: fc4b375bf1
2026-03-26 20:05:04 -07:00
Owen
7f67714707
Add --config-file
...
Former-commit-id: baca04ee58
2026-03-26 17:31:04 -07:00
Owen
1a4cdf7fc3
Provisioning key working
...
Former-commit-id: b43572dd8d
2026-03-26 17:23:19 -07:00
Owen
195fb57f03
Process log to form sessions
...
Former-commit-id: 69019d5655
2026-03-24 17:26:44 -07:00
Owen
d3fef27949
Saving and sending access logs pass 1
...
Former-commit-id: 0f57985b6f
2026-03-23 16:39:01 -07:00
Owen Schwartz
c5db50c948
Merge pull request #274 from LaurenceJJones/refactor/proxy-cleanup-basics
...
refactor(proxy): cleanup basics - constants, remove dead code, fix de…
Former-commit-id: a2683eb385
2026-03-18 15:39:43 -07:00
Owen Schwartz
0e690089f5
Merge pull request #280 from LaurenceJJones/fix/healthcheck-ipv6
...
fix(healthcheck): Support ipv6 healthchecks
Former-commit-id: d3722c2519
2026-03-18 15:38:15 -07:00
Laurence
129ca0ad87
fix(healthcheck): Support ipv6 healthchecks
...
Currently we are doing fmt.sprintf on hostname and port which will not properly handle ipv6 addresses, instead of changing pangolin to send bracketed address a simply net.join can do this for us since we dont need to parse a formatted string
Former-commit-id: 8fda35db4f
2026-03-18 13:37:31 +00:00
Owen Schwartz
439685ec2a
Merge pull request #269 from LaurenceJJones/feature/pprof-endpoint
...
feat(admin): Add pprof endpoints
Former-commit-id: de4353f2e6
2026-03-17 11:42:08 -07:00
Owen Schwartz
acdb460eba
Merge pull request #279 from fosrl/dev
...
1.10.3
Former-commit-id: b398f531f0
1.10.3
2026-03-16 16:47:39 -07:00
Owen
824606e8fb
Bump ping interval up
...
Former-commit-id: 8161fa6626
2026-03-16 14:33:40 -07:00
Owen
87d03bd589
Remove redundant info
...
Former-commit-id: 24dfb3a8a2
2026-03-16 13:50:45 -07:00
Laurence
3ccf13354c
refactor(proxy): cleanup basics - constants, remove dead code, fix deprecated calls
...
- Add maxUDPPacketSize constant to replace magic number 65507
- Remove commented-out code in Stop()
- Replace deprecated ne.Temporary() with errors.Is(err, net.ErrClosed)
- Use errors.As instead of type assertion for net.Error
- Use errors.Is for closed connection checks instead of string matching
- Handle closed connection gracefully when reading from UDP target
Former-commit-id: 13448f76aa
2026-03-16 14:11:14 +00:00
Owen
acbbce787c
Send disconnecting message
...
Former-commit-id: d4ebb3e2af
2026-03-15 17:42:03 -07:00
Owen
7ddcfe968d
Clean up to match olm
...
Former-commit-id: bf029b7bb2
2026-03-14 11:57:37 -07:00
Owen
19f1f38dcf
Merge branch 'dev' into msg-opt
...
Former-commit-id: 745d2dbc7e
2026-03-13 17:10:49 -07:00
Owen
ca22eb9a96
Clean up previous logging
...
Former-commit-id: c7b01288e0
2026-03-13 11:45:36 -07:00
Owen
b6ed0c7b57
Add optional compression
...
Former-commit-id: 539e595c48
2026-03-12 17:49:05 -07:00
Owen
72ea572acb
Allow passing public dns into resolve
...
Former-commit-id: ef03b4566d
v1.10.3
2026-03-12 16:41:41 -07:00
Laurence
82074919d1
feat(admin): Add pprof endpoints
...
To aid us in debugging user issues with memory or leaks we need to be able for the user to configure pprof, wait and then provide us the output files to see where memory/leaks occur in actual runtimes
Former-commit-id: 836144aebf
2026-03-12 09:22:50 +00:00
Owen
8bc4e414e7
Merge branch 'dev' of github.com:fosrl/newt into dev
...
Former-commit-id: a1df3d7ff0
2026-03-11 17:28:16 -07:00
Laurence
1ba0d23a16
feat(installer): prefer /usr/local/bin and improve POSIX compatibility
...
- Always install to /usr/local/bin instead of ~/.local/bin
- Use sudo automatically when write access is needed
- Replace bash-specific syntax with POSIX equivalents:
- Change shebang from #!/bin/bash to #!/bin/sh
- Replace [[ == *pattern* ]] with case statements
- Replace echo -e with printf for colored output
- Script now works with dash, ash, busybox sh, and bash
Former-commit-id: d68a13ea1f
2026-03-10 10:01:28 -07:00
Owen
9377df6526
Set newt version in dockerfile
...
Former-commit-id: 44ca592a5c
1.10.2
2026-03-08 11:28:56 -07:00
Owen
199f936046
Set newt version in dockerfile
...
Former-commit-id: accac75a53
2026-03-08 11:26:35 -07:00
Laurence
4ce7b433ff
Parse target strings with IPv6 support and strict validation
...
Add parseTargetString() for listenPort:host:targetPort using net.SplitHostPort/JoinHostPort. Replace manual split in updateTargets; fix err shadowing on remove. Validate listen port 1–65535 and reject empty host/port; use %w for errors. Add tests for IPv4, IPv6, hostnames, and invalid cases.
Former-commit-id: 768415f90b
2026-03-07 21:32:36 -08:00
Owen
bc5eaa9a35
Make sure to set version and fix prepare issue
...
Former-commit-id: e1edbcea07
v1.10.2
2026-03-07 12:34:55 -08:00
Owen
a99c57b5e1
Merge branch 'main' into dev
...
Former-commit-id: da9825d030
2026-03-07 12:34:45 -08:00
Owen
e03963003d
Make sure to set version and fix prepare issue
...
Former-commit-id: afdb1fc977
2026-03-07 12:32:49 -08:00
Owen
5b44966809
Make sure to skip prepare
...
Former-commit-id: 392e4c83bf
2026-03-07 10:37:44 -08:00
Owen
a8063cdffe
Make sure to skip prepare
...
Former-commit-id: 1bd1133ac2
2026-03-07 10:36:18 -08:00
Owen
6d4f51078d
Build full arn
...
Former-commit-id: a85454e770
2026-03-07 10:20:18 -08:00
Owen
838f99686b
Build full arn
...
Former-commit-id: fac0f5b197
2026-03-07 10:17:14 -08:00
Marc Schäfer
1d57344168
fix(ci): Refactor CI/CD workflow for AWS and image management
...
Updated CI/CD workflow to improve AWS role handling and image tagging.
Former-commit-id: 068145c539
2026-03-07 10:07:55 -08:00
Marc Schäfer
ddc98070bb
fix(ci): Use AWS SelfHosted runner to fix pull and install request limit
...
Former-commit-id: 91a035f4ab
2026-03-07 10:07:55 -08:00
Owen
72e2ebc0b2
Temp lets ignore the sync messages
...
Former-commit-id: e68b65683f
2026-03-06 15:14:48 -08:00
Owen
362659ef28
Merge branch 'dev' into msg-opt
...
Former-commit-id: 7d6825132b
2026-03-03 16:56:41 -08:00
Owen Schwartz
cc7e6a8b25
Merge pull request #250 from fosrl/dev
...
1.10.2
Former-commit-id: beaf386615
2026-03-03 16:49:18 -08:00