Skip to content
/ synapse Public

Synapse with Beeper customizations

License

Notifications You must be signed in to change notification settings

beeper/synapse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e123b0a · Mar 21, 2025
Dec 13, 2023
Jan 9, 2025
Jan 9, 2025
Oct 8, 2024
Sep 25, 2024
Oct 15, 2024
May 3, 2023
Mar 21, 2025
Oct 7, 2024
Jan 9, 2025
Sep 26, 2024
Sep 2, 2024
Mar 13, 2025
Sep 2, 2024
Jan 9, 2025
Jul 31, 2019
Aug 29, 2019
Oct 11, 2022
Nov 22, 2022
Nov 15, 2023
Jul 3, 2023
Sep 20, 2022
Dec 16, 2019
Oct 15, 2024
Jan 3, 2024
Sep 30, 2024
Jul 10, 2023
Dec 13, 2023
Nov 21, 2023
Jan 9, 2025
Sep 10, 2024
Dec 13, 2023
Dec 13, 2023
Oct 3, 2022
Sep 6, 2023
Sep 6, 2023
Jul 2, 2024
Oct 7, 2024
Oct 15, 2024
Nov 15, 2023
Apr 12, 2022

Repository files navigation

Synapse: Beeper Edition

This is Beeper's custom version of synapse, we rebase roughly 25 commits on top of each upstream release with a few Beeper specific modifications. We also have an actual Synapse fork here: beeper/synapse-fork which is where we make changes we expect to merge into upstream.

Rebase flow

Create PR

Here we're upgrading to v1.96.1:

# Make a new branch from the upstream release, we do this so we can create a PR
# of Beeper -> upstream to run tests/confirm we're happy.
git checkout -f v1.96.1
git checkout -b upstream-1.96.1
git push -u beeper upstream-1.96.1

# Check out the base branch, pull any changes
git checkout beeper
git pull

# Now create a new branch to rebase
git checkout -b beeper-1.96.1
# And do the rebase
git rebase v1.96.1
# fix any conflicts...

# Push and make a PR from this branch to the upstream one created above
git push -u beeper beeper-1.96.1

Make release

Once it's ready we just overwrite the beeper branch with the new one:

git checkout beeper-1.96.1
git push --force beeper beeper