Pyry Kovanen
c35aabcebf
Merge pull request #6744 from urbit/develop
...
Merge develop into next/kelvin/412
2023-07-28 16:32:35 +03:00
Marcus
71ccdbe4ab
json: remove deprecated JSON parser calls
2023-07-24 15:18:11 +03:00
Marcus
a42b74bc5c
mar: better HTML-related conversions
2023-07-24 15:16:56 +03:00
Hunter Miller
5f67d79411
landscape: use correct args and syntax
2023-05-01 14:26:38 -05:00
Hunter Miller
565869f86d
landscape: compat w/ 413
2023-05-01 09:59:19 -05:00
Alex Shelkovnykov
ac1a0ffdee
Change JSON parser arms to match |base16:html
2023-04-11 14:59:15 -06:00
Hunter Miller
8e5b9763b4
meta: update for kelvin
2023-03-22 10:39:15 -05:00
~midsum-salrux
61850ba009
Filter out DMs
2023-02-17 09:38:07 -05:00
~midsum-salrux
5c0e1992f9
Skip migration if there are no channels
2023-02-15 10:55:50 -05:00
~midsum-salrux
9cf887d1f1
Working migration
2023-02-10 15:19:08 -05:00
~midsum-salrux
71204db957
Merge branch 'master' into ns/migrate-my-channels
2023-02-08 21:29:13 -05:00
~midsum-salrux
ede8a515ba
Early draft of migration
2023-02-08 21:29:09 -05:00
Philip Monk
9fe4386ac5
Merge pull request #6228 from urbit/i/6227/kelvin-bump
...
apps: bump kelvin
2023-01-20 14:08:26 -07:00
fang
4d260147d4
chat-cli: put it to rest
...
Old groups software, no longer supported. Don't want this to be
re-linked and confuse people just trying to use their dojo.
2023-01-20 20:56:50 +01:00
Philip Monk
38540ada2c
apps: bump kelvin
...
Fixes #6227
2023-01-20 12:17:35 -07:00
Tinnus Napbus
8bf4373d13
remove unused components
...
Fixes #6216
- bitcoin: removed
- garden: new location https://github.com/tloncorp/landscape
- hs: removed
- urbit (vere), docker-image, ent, urcrypt:
new repo https://github.com/urbit/vere
2023-01-20 13:49:03 +13:00
Philip Monk
f36591493c
kelvin: landscape is only compatible with 416
2023-01-11 14:44:55 -07:00
Philip Monk
7ef91f5218
kelvin: for apps, add compatibility with 417
2023-01-10 15:13:00 -07:00
fang
5b160f0c74
zuse: bump kelvin to 416
...
And lull to 327.
2023-01-06 23:31:16 +01:00
fang
5a284197bf
Merge branch 'next/dill' into m/drum-sessions
2023-01-05 22:23:20 +01:00
fang
0af037571e
Merge branch 'next/arvo' into next/dill
2023-01-05 22:20:02 +01:00
Hunter Miller
2506fb85f8
Merge pull request #6157 from urbit/lf/rebuild-wait-2
...
group-store: allow rebuilding .wait state
2023-01-04 13:10:00 -06:00
Hunter Miller
9316aebec7
group-store: only run rebuild once
2023-01-04 12:40:18 -06:00
Hunter Miller
563aed6b7f
group-store: automatically run rebuild on load
2023-01-04 11:17:44 -06:00
Hunter Miller
936835cd0c
groups-store: fixing wire check for leaves
2023-01-03 18:50:05 -06:00
Hunter Miller
264678a908
group-store: correct target
2023-01-03 18:17:02 -06:00
Hunter Miller
4e3698f327
group-store: instead of only watching missing, restart any migration subscriptions that might be bad
2023-01-03 17:47:26 -06:00
tomholford
0f5433c014
Merge branch 'master' into next/groups
2023-01-03 14:16:28 -08:00
fang
721fa05519
Merge branch 'next/arvo' into next/dill
2023-01-03 18:56:33 +01:00
fang
a15111a35c
Merge branch 'next/arvo' into m/drum-sessions
2023-01-03 17:19:32 +01:00
Zach Alberico
0153d11972
Merge branch 'master' into lf/rebuild-wait-2
2022-12-15 17:36:44 -08:00
Liam Fitzgerald
4df4a16881
group-store: add %rebuild poke
2022-12-14 13:29:17 -06:00
Liam Fitzgerald
48978bd940
group-store: allow rebuilding
2022-12-14 12:46:36 -06:00
Philip Monk
e1419d1787
contact-store: no-op if adding old contact
...
%contact-store is responsible for sending updates about contacts, eg
profile color. When it hears an update, it fans that out to its
subsribers, unless that update is stale. If you reguarly fan out stale
updates, then they reverberate across the network indefinitely -- we
call this "echoing".
To cut off this echoing, all edits have a timestamp, and we consider any
updates from before this timestamp to be stale. Additions are separate
from edits, and for them we instead do a value comparison on the contact
-- if it didn't change, we consider the update stale.
The problem with this scheme is that if an addition and edit happen one
after the other in quick succession, you might have the following
sequence:
- add comes in with timestamp T1
- edit comes in with timestamp T2 after T1
- we hear an echo of the add, and that errantly applies because it
passes our "did the contact actually change" check
- we hear an echo of the edit, which applies because T2 is after T1
- GOTO 3
Each time we apply the stale update, we fan that out to our subscribers,
and if any two hosts subscribe to each other, this will loop. This may
even loop unconditionally because the ship that made the profile changes
seems like it might not recognize that those changes didn't come from
itself, so it sends them to all the groups it's in. If so, that's an
important issue to fix.
Fixes tloncorp/landscape-issues#1442
2022-12-12 13:03:41 -07:00
Hunter Miller
cec4e11448
Merge pull request #6141 from urbit/hm/change-ota-source
...
migration: set official ota source
2022-12-09 12:22:50 -06:00
Hunter Miller
ff0231e761
migration: set official ota source
2022-12-09 12:22:04 -06:00
Hunter Miller
38919352c8
migration: adding crash fix
2022-12-09 11:07:51 -06:00
Liam Fitzgerald
4584067e7d
Merge branch 'lf/gladio-2'
2022-12-09 15:23:18 +10:00
Liam Fitzgerald
cf2c73a0e1
group-store: make %migrate idempotent
2022-12-09 12:39:47 +10:00
Liam Fitzgerald
eedc50f9e4
group-store: add /wait endpoints
2022-12-09 12:22:22 +10:00
Liam Fitzgerald
1a1dec6268
group-store: handle alpha correctly
2022-12-09 09:34:56 +10:00
Hunter Miller
9fc6cf7a40
kelvin: update
2022-12-08 11:01:48 -06:00
Hunter Miller
8ac999593a
migration: update source
2022-12-08 10:55:03 -06:00
Hunter Miller
d4cce14ff4
bill: removing notify
2022-12-08 07:56:21 -06:00
Hunter Miller
e4560339ec
migration: fixing state versions
2022-12-08 07:53:00 -06:00
Liam Fitzgerald
45b9686b06
migration: remove docket for landscape
2022-12-07 08:41:01 +10:00
Liam Fitzgerald
fbb2bd865e
migration: uninstall through %docket
2022-12-07 08:36:35 +10:00
Liam Fitzgerald
d9a895c214
Merge remote-tracking branch 'origin/master' into lf/migration-prep
2022-12-07 08:32:05 +10:00
Liam Fitzgerald
e600ded69c
migration: install %talk
2022-12-07 08:30:04 +10:00
Liam Fitzgerald
6841f726a7
metadata-pull-hook: disabling remove on nack
2022-12-05 13:09:30 +10:00