Skip to content

Commit

Permalink
Commit changelogs (#1698)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocastignoli authored Oct 14, 2024
2 parents 330515a + 20a5825 commit ecab6de
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.4.2 - 2024-10-14

- Build before testing in CI
- Update release process
- Remove build and debug from VSCode launch.json
- Run cli.js instead of server.js
- Update packages
- Add script to rename files with .sol in repoV2 to without file extension

## sourcify-monorepo@1.4.1 - 2024-09-17

- Increase GCP deploy step timeout
Expand Down
4 changes: 4 additions & 0 deletions packages/bytecode-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## @ethereum-sourcify/bytecode-utils@1.2.12 - 2024-10-14

- Update packages

## @ethereum-sourcify/bytecode-utils@1.2.11 - 2024-09-17

- Update dependencies
Expand Down
5 changes: 5 additions & 0 deletions packages/lib-sourcify/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## @ethereum-sourcify/lib-sourcify@1.9.3 - 2024-10-14

- Add routescan for creatorTx fetching and types
- Update packages

## @ethereum-sourcify/lib-sourcify@1.9.2 - 2024-09-17

- Fix wrong bytecode comparison on creation bytecode matching, use .startsWith() instead
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/main.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ declare -A selected_versions

check_packages_for_update # Must run this because it sets the above variables

prompt_execute_or_skip "creating new branch" create_new_branch "commit-changelogs-$(date +'%Y-%m-%d')"
prompt_execute_or_skip "creating new branch because we can't commit to staging directly" create_new_branch "commit-changelogs-$(date +'%Y-%m-%d')"
prompt_execute_or_skip "choosing versions for each package and writing changelogs" update_packages_and_changelog
prompt_execute_or_skip "commiting the changelogs" commit_changelogs
prompt_execute_or_skip "publishing the branch" publish_branch "commit-changelogs-$(date +'%Y-%m-%d')"
Expand Down
2 changes: 1 addition & 1 deletion scripts/release/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ update_packages_and_changelog() {
current_version="${versions[$index]}"

prompt_execute_or_skip "selecting a version for $pkg_name" select_new_version "$pkg_name" "$current_version"
prompt_execute_or_skip "updating the chagelog for $pkg_name" update_changelog "$pkg_name" "${directories[$index]}"
prompt_execute_or_skip "updating the changelog for $pkg_name" update_changelog "$pkg_name" "${directories[$index]}"
done
}

Expand Down
6 changes: 6 additions & 0 deletions services/database/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog for `sourcify-database`

## sourcify-database@2.0.0 - 2024-10-14

- Update the Sourcify Database to incorporate the new Verifier Alliance Database schema
- Support for custom schema name in Postgres
- Add the script to migrate the database from v0 to v1

## sourcify-database@1.3.0 - 2024-08-29

- Added constraints for `compiled_contracts` table in migrations
Expand Down
6 changes: 6 additions & 0 deletions services/monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## sourcify-monitor@1.3.2 - 2024-10-14

- Update monitor RPCs
- Update packages
- Don't throw when unable to submit contracts to Sourcify servers

## sourcify-monitor@1.3.1 - 2024-09-17

- Allow generic ApiKeys for chains in chains.json
Expand Down
15 changes: 15 additions & 0 deletions services/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file.

## sourcify-server@2.3.0 - 2024-10-14

- Incorporate the new DB schema with separate sources table
- Reusable server module (#1637): It's possible to create server instances fully with `new Server()`.
- Use server public url in getTree instead of repositoryV1 url (#1677)
- Use source_hash instead of source_hash_keccak when finding sources (#1671)
- Remove .sol extension in repositoryV2 (#1648)
- New chains:
- Polygon zkEVM Cardona Testnet (2442)
- B2 Mainnet (223)
- OORT Mainnet (970)
- TixChain Testnet (723107)



## sourcify-server@2.2.1 - 2024-09-17

- Check Blockscout first instead of Etherscan for creatorTxHash'es
Expand Down

0 comments on commit ecab6de

Please sign in to comment.