Skip to content

Commit

Permalink
Update canisters post release (#4997)
Browse files Browse the repository at this point in the history
  • Loading branch information
hpeebles authored Dec 13, 2023
1 parent a1c4944 commit 619c64c
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 6 deletions.
2 changes: 2 additions & 0 deletions backend/canisters/notifications/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

## [[2.0.970](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.970-notifications)] - 2023-12-12

### Changed

- Use dynamic buffer size when reading from stable memory ([#4683](https://github.com/open-chat-labs/open-chat/pull/4683))
Expand Down
1 change: 0 additions & 1 deletion backend/canisters/notifications/impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ struct Data {
pub cycles_dispenser_canister_id: CanisterId,
pub notifications: EventStream<NotificationEnvelope>,
pub subscriptions: Subscriptions,
#[serde(default)]
pub rng_seed: [u8; 32],
pub test_mode: bool,
}
Expand Down
2 changes: 2 additions & 0 deletions backend/canisters/notifications_index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

## [[2.0.971](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.971-notifications_index)] - 2023-12-12

### Changed

- Use dynamic buffer size when reading from stable memory ([#4683](https://github.com/open-chat-labs/open-chat/pull/4683))
Expand Down
1 change: 0 additions & 1 deletion backend/canisters/notifications_index/impl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,6 @@ struct Data {
pub notifications_canister_wasm_for_upgrades: CanisterWasm,
pub canisters_requiring_upgrade: CanistersRequiringUpgrade,
pub notifications_index_event_sync_queue: CanisterEventSyncQueue<NotificationsIndexEvent>,
#[serde(default)]
pub rng_seed: [u8; 32],
pub test_mode: bool,
}
Expand Down
2 changes: 2 additions & 0 deletions backend/canisters/user_index/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [unreleased]

## [[2.0.969](https://github.com/open-chat-labs/open-chat/releases/tag/v2.0.969-user_index)] - 2023-12-12

### Changed

- Pay rewards based on one year if referred user becomes lifetime member ([#4979](https://github.com/open-chat-labs/open-chat/pull/4979))
Expand Down
1 change: 0 additions & 1 deletion backend/canisters/user_index/impl/src/model/user_map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ pub struct UserMap {
#[serde(skip)]
user_referrals: HashMap<UserId, Vec<UserId>>,
suspected_bots: BTreeSet<UserId>,
#[serde(default)]
suspended_or_unsuspended_users: BTreeSet<(TimestampMillis, UserId)>,
}

Expand Down
6 changes: 3 additions & 3 deletions canister_commit_ids.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
"local_user_index": "f886c1630c5790e6518077d7b1fa8f85906f3fb2",
"market_maker": "9a6a38f86194b57dc8718c2a595ef4b00cf82d47",
"neuron_controller": "70cd194427a9eb48972ae8924b6e8a6be74199f4",
"notifications": "b72fb44d4d34c1b9f34dc6eb650144944b57860a",
"notifications_index": "b72fb44d4d34c1b9f34dc6eb650144944b57860a",
"notifications": "91512f09ac773c85622fa84a7ea602d4273dcc8b",
"notifications_index": "91512f09ac773c85622fa84a7ea602d4273dcc8b",
"online_users": "9a6a38f86194b57dc8718c2a595ef4b00cf82d47",
"proposals_bot": "23c4e18dfa32ad868ebf3588bd821d7c0d68d008",
"proposal_validation": "03647d5475bd4cb1b6299c5688e6d4f97928559a",
"registry": "2ab7483426e2248c5de9d54ad7fd4765771cd917",
"storage_bucket": "5c4fb8d98e68053c6d93050dfafbd2dbb4c3c9b9",
"storage_index": "8426b83456957cdc997374c8a01d9b641d1d3d08",
"user": "6343c6c2a37fcf3e500dcc2df7b2b678155f2fd2",
"user_index": "a42474f7129d5031065b51af56a5acf6b34b8c22"
"user_index": "91512f09ac773c85622fa84a7ea602d4273dcc8b"
}

0 comments on commit 619c64c

Please sign in to comment.