Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
146bfd1
chore: remove unused domain selection order (#255)
augustoccesar Mar 6, 2026
8ee3ed5
refactor: simplify core session structure (#256)
augustoccesar Mar 11, 2026
cfe99b8
refactor: simplify State and Config entities (#258)
augustoccesar Mar 11, 2026
20c531c
chore(deps): bump openssl from 0.10.68 to 0.10.75 in the cargo group …
dependabot[bot] Mar 11, 2026
abd0af2
chore: remove deprecated --all arg on `status` (#262)
augustoccesar Mar 16, 2026
ecb1ce8
refactor: move service functions to default trait (#261)
augustoccesar Mar 17, 2026
49ad8c8
Merge branch 'main' into next
augustoccesar Mar 19, 2026
ef0eddc
feat: all local servers managed together (#265)
augustoccesar Mar 27, 2026
9f97371
chore: reference correct source on HTTP errors
augustoccesar Mar 30, 2026
3918ac0
feat: support dynamic DNS records (#266)
augustoccesar Mar 31, 2026
b720023
feat: register DNS records is done when registering session
augustoccesar Mar 31, 2026
cf31583
feat: change Rust edition to 2024
augustoccesar Mar 31, 2026
e4e738d
feat!: remove no-tunnel feature
augustoccesar Mar 31, 2026
b0450f7
feat: remove reset command
augustoccesar Mar 31, 2026
6bc1bb0
chore: organize dependencies (#271)
augustoccesar Apr 7, 2026
d2e0f6d
refactor: replace implementation of progress with indicatif
augustoccesar Apr 11, 2026
790d8f7
test: add test for ensuring that equivalent session have same name
augustoccesar Apr 11, 2026
9f0bd99
fix: ensure session sha is consistent independent of order of fields
augustoccesar Apr 11, 2026
ecf114a
refactor: use str for StringStore
augustoccesar Apr 12, 2026
d0c5c76
Merge branch 'main' into next
augustoccesar Apr 13, 2026
19289b3
chore!: remove deprecated endpoint
augustoccesar Apr 13, 2026
a6aa839
refactor: unify upsert requests (#273)
augustoccesar Apr 14, 2026
980e39c
refactor: align subcrates versions (#277)
augustoccesar Apr 17, 2026
1614b85
feat: create linkup-clients crate (#276)
augustoccesar Apr 17, 2026
2d7121b
fix: release workflows look at the correct Cargo.toml
augustoccesar Apr 17, 2026
dfb55e5
refactor: split the worker and local-server libs (#278)
augustoccesar Apr 17, 2026
e4bef21
fix: align linkup-clients version with workspace
augustoccesar Apr 17, 2026
ddfbbba
refactor: internalize Session validation
augustoccesar Apr 17, 2026
ce625d5
refactor: rename client errors
augustoccesar Apr 17, 2026
663ab7d
refactor: unify tunnel models
augustoccesar Apr 17, 2026
e162ef2
chore: bump dependencies
augustoccesar Apr 20, 2026
7ea749c
refactor: worker and local server states
augustoccesar Apr 21, 2026
5819948
refactor: move https client to linkup-clients
augustoccesar Apr 21, 2026
c1a0297
refactor: simplify booting logic (#279)
augustoccesar Apr 21, 2026
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
4 changes: 2 additions & 2 deletions .github/workflows/release-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@ jobs:

- name: Update Cargo.toml Version
run: |
sed -i.bak 's@^version = .*@version = "${{ needs.generate-version.outputs.version }}"@' linkup-cli/Cargo.toml
rm linkup-cli/Cargo.toml.bak
sed -i.bak 's@^version = .*@version = "${{ needs.generate-version.outputs.version }}"@' Cargo.toml
rm Cargo.toml.bak

- name: Install Rust
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches:
- main
paths:
- "linkup-cli/Cargo.toml"
- "Cargo.toml"

jobs:
check_version:
Expand All @@ -23,8 +23,8 @@ jobs:
- name: Check Version
id: check
run: |
new_version=$(grep '^version = ' linkup-cli/Cargo.toml | sed -E 's/version = "(.*)"/\1/')
old_version=$(git show HEAD^:linkup-cli/Cargo.toml | grep '^version = ' | sed -E 's/version = "(.*)"/\1/')
new_version=$(grep '^version = ' Cargo.toml | sed -E 's/version = "(.*)"/\1/')
old_version=$(git show HEAD^:Cargo.toml | grep '^version = ' | sed -E 's/version = "(.*)"/\1/')

echo "New version: $new_version"
echo "Old version: $old_version"
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
- name: Get Version from Cargo.toml
id: get_version
run: |
VERSION=$(grep '^version = ' linkup-cli/Cargo.toml | sed -E 's/version = "(.*)"/\1/')
VERSION=$(grep '^version = ' Cargo.toml | sed -E 's/version = "(.*)"/\1/')
echo "RELEASE_VERSION=$VERSION" >> $GITHUB_ENV
echo "release_version=$VERSION" >> $GITHUB_OUTPUT

Expand Down
Loading
Loading