From c2b75701d80a57fb7cd253a708bb33655fb4ecc3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kaan=20Uzdo=C4=9Fan?= Date: Tue, 23 Apr 2024 11:44:01 +0200 Subject: [PATCH] Update changelogs --- CHANGELOG.md | 6 ++++++ packages/lib-sourcify/CHANGELOG.md | 4 ++++ services/database/CHANGELOG.md | 4 ++++ services/monitor/CHANGELOG.md | 4 ++++ services/server/CHANGELOG.md | 15 +++++++++++++++ ui/CHANGELOG.md | 4 ++++ 6 files changed, 37 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5408448b2..912a4711c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This CHANGELOG will contain monorepo related changes such as CI configs, shared dependencies and the development setup. +## sourcify-monorepo@1.2.8 - 2024-04-23 + +- Skip npm-publish if not a package +- s3-backup-check on master only +- Add the release script + ## sourcify-monorepo@1.2.7 - 2024-04-04 - Update dependencies diff --git a/packages/lib-sourcify/CHANGELOG.md b/packages/lib-sourcify/CHANGELOG.md index e5378b9a8..16fd1ced3 100644 --- a/packages/lib-sourcify/CHANGELOG.md +++ b/packages/lib-sourcify/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## @ethereum-sourcify/lib-sourcify@1.7.5 - 2024-04-23 + +- Add log to fetching bytecode + ## @ethereum-sourcify/lib-sourcify@1.7.4 - 2023-04-04 - Add function to export the minimum information to reconstruct the CheckedContract diff --git a/services/database/CHANGELOG.md b/services/database/CHANGELOG.md index b208e1a13..404ccf753 100644 --- a/services/database/CHANGELOG.md +++ b/services/database/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog for `sourcify-database` +## sourcify-database@1.1.0 - 2024-04-23 + +- Add session table to migrations + ## sourcify-database@1.0.3 - 2024-04-04 - Add schema to support postgresql based session (commented) diff --git a/services/monitor/CHANGELOG.md b/services/monitor/CHANGELOG.md index 2ea77a204..2c9197af7 100644 --- a/services/monitor/CHANGELOG.md +++ b/services/monitor/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## sourcify-monitor@1.1.13 - 2024-04-23 + +- Make package private + ## sourcify-monitor@1.1.12 - 2024-04-04 - Update dependencies diff --git a/services/server/CHANGELOG.md b/services/server/CHANGELOG.md index 89781ff42..4762ef300 100644 --- a/services/server/CHANGELOG.md +++ b/services/server/CHANGELOG.md @@ -2,6 +2,21 @@ All notable changes to this project will be documented in this file. +## sourcify-server@1.6.0 - 2024-04-23 + +- Use Postgres session table for session instead of memory only +- Add dry run parameter for the session verify endpoint +- Increase lambda function max response size by swithching to streaming +- Add fallback to the local compiler when the lambda response is too large +- Don't store contract once again if it's already partial and the result is partial +- New chains: + - Tangle (5845) + - Swisstronik (1291) + - Polygon Amoy Testnet (80002) + - DEGEN (666666666) +- Deprecated chains: + - Polygon Mumbai Testnet (80001) + ## sourcify-server@1.5.6 - 2024-04-04 - Fix checkAndFetchMissing failing in session API diff --git a/ui/CHANGELOG.md b/ui/CHANGELOG.md index f60008fd8..902868383 100644 --- a/ui/CHANGELOG.md +++ b/ui/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## sourcify-ui@1.1.5 - 2024-04-23 + +- Use chain.title before chain.name + ## sourcify-ui@1.1.3 - 2023-04-04 - Add custom error message for session time out issue in Verifier component #1317