Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: publish 0.49.0 #1439

Merged
merged 1 commit into from
Jul 24, 2024
Merged

chore: publish 0.49.0 #1439

merged 1 commit into from
Jul 24, 2024

Conversation

MantisClone
Copy link
Member

@MantisClone MantisClone commented Jul 24, 2024

Changes

This PR updates the inter-package dependencies and the package-specific CHANGELOG.md files. By the time this PR is created, the releases in NPM, Github, and Dockerhub should have already been published. Merge this PR before executing the next release.

⚠️ WARNING: Do NOT squash merge or rebase merge this PR!

Squash merging or rebase merging the "chore: publish" PR or release branch changes the commit hash and orphans the version tags applied by lerna publish --conventional-commits. This will cause the next-release workflow in CircleCI to release incorrect version numbers. This will also cause duplicate entries in the CHANGELOG.md files.

Release 0.49.0

https://github.com/RequestNetwork/requestNetwork/releases/tag/0.49.0

What's Changed

Features

Bug Fixes

Full Changelog: RequestNetwork/requestNetwork/compare/0.48.0...master

Packages

Images

Summary by CodeRabbit

  • New Features

    • Introduced new payment networks including Arbitrum, Avalanche, Goerli, and Fantom.
    • Added batch payment processing for native tokens.
    • Implemented a CurrencyManager for better conversion path management.
    • Enhanced support for zkSyncEra and zkSyndTestnet networks.
  • Bug Fixes

    • Resolved issues with payment detection mechanisms and transaction handling.
    • Fixed security vulnerabilities and removed Coveralls integration.
  • Documentation

    • Updated changelog files for clarity on new features and fixes.
  • Refactor

    • Streamlined build process by replacing shx with native commands and removing unnecessary dependencies.
  • Style

    • Improved code organization and readability across various packages.
  • Tests

    • Enhanced test coverage and fixed TypeScript linting issues.
  • Chores

    • Updated various package dependencies to their latest versions for improved functionality and security.

 - @requestnetwork/advanced-logic@0.44.0
 - @requestnetwork/currency@0.18.0
 - @requestnetwork/data-access@0.36.0
 - @requestnetwork/data-format@0.19.0
 - @requestnetwork/epk-decryption@0.7.0
 - @requestnetwork/epk-signature@0.9.0
 - @requestnetwork/ethereum-storage@0.36.0
 - @requestnetwork/integration-test@0.38.0
 - @requestnetwork/multi-format@0.19.0
 - @requestnetwork/payment-detection@0.45.0
 - @requestnetwork/payment-processor@0.47.0
 - @requestnetwork/request-client.js@0.49.0
 - @requestnetwork/request-logic@0.35.0
 - @requestnetwork/request-node@0.36.0
 - @requestnetwork/smart-contracts@0.38.0
 - @requestnetwork/thegraph-data-access@0.42.0
 - @requestnetwork/toolbox@0.15.0
 - @requestnetwork/transaction-manager@0.36.0
 - @requestnetwork/types@0.45.0
 - @requestnetwork/usage-examples@0.32.0
 - @requestnetwork/utils@0.45.0
 - @requestnetwork/web3-signature@0.8.0
Copy link

coderabbitai bot commented Jul 24, 2024

Walkthrough

The recent updates across multiple packages in the Request Network ecosystem emphasize significant enhancements in functionality, security, and performance. Key improvements include extensive bug fixes, the introduction of new features for better transaction management, and support for additional blockchain networks. The updates also streamline build processes by removing outdated dependencies. Overall, these changes reflect a robust commitment to maintaining a secure, efficient, and user-friendly experience in handling transactions and payments across diverse platforms.

Changes

File(s) Change Summary
packages/advanced-logic/CHANGELOG.md, packages/advanced-logic/package.json Version 0.44.0 introduces bug fixes, support for new networks, and enhancements in currency management.
packages/currency/CHANGELOG.md, packages/currency/package.json Version 0.18.0 adds new currency support and improves transaction capabilities with several bug fixes.
packages/data-access/CHANGELOG.md, packages/data-access/package.json Version 0.36.0 enhances security features, introduces new publish functionalities, and updates dependencies.
packages/data-format/CHANGELOG.md, packages/data-format/package.json Version 0.19.0 focuses on security improvements and bug fixes related to currency handling and invoice management.
packages/epk-decryption/CHANGELOG.md, packages/epk-decryption/package.json Version 0.7.0 addresses security vulnerabilities and improves publishing updates.
packages/epk-signature/CHANGELOG.md, packages/epk-signature/package.json Version 0.9.0 includes bug fixes and enhancements in publishing capabilities.
packages/ethereum-storage/CHANGELOG.md, packages/ethereum-storage/package.json Version 0.36.0 improves transaction cost management and introduces features for better gas fee handling.
packages/integration-test/CHANGELOG.md, packages/integration-test/package.json Version 0.38.0 resolves test failures and enhances payment network handling capabilities.
packages/multi-format/CHANGELOG.md, packages/multi-format/package.json Version 0.19.0 introduces security fixes and enhancements in publishing processes.
packages/payment-detection/CHANGELOG.md, packages/payment-detection/package.json Version 0.45.0 adds features for meta payment networks and improves detection mechanisms.
packages/payment-processor/CHANGELOG.md, packages/payment-processor/package.json Version 0.47.0 enhances payment processing capabilities and includes batch payment features.
packages/request-client.js/CHANGELOG.md, packages/request-client.js/package.json Version 0.49.0 adds new features for transaction handling and improves currency management.
packages/request-logic/CHANGELOG.md, packages/request-logic/package.json Version 0.35.0 includes new features for stakeholder management and security enhancements.
packages/request-node/CHANGELOG.md, packages/request-node/package.json Version 0.36.0 introduces gas price management features and improves publishing processes.
packages/smart-contracts/CHANGELOG.md, packages/smart-contracts/package.json Version 0.38.0 introduces batch payment features and improves publishing mechanisms.
packages/thegraph-data-access/CHANGELOG.md, packages/thegraph-data-access/package.json Version 0.42.0 improves publishing processes and optimizes transaction querying features.
packages/toolbox/CHANGELOG.md, packages/toolbox/package.json Version 0.15.0 enhances security, improves publishing processes, and adds support for new blockchain networks.
packages/transaction-manager/CHANGELOG.md, packages/transaction-manager/package.json Version 0.36.0 introduces new methods for transaction management and resolves several bugs.

Sequence Diagram(s)

sequenceDiagram
    participant User
    participant PaymentProcessor
    participant CurrencyManager
    participant TransactionManager

    User->>PaymentProcessor: Initiate Payment
    PaymentProcessor->>CurrencyManager: Get Conversion Path
    CurrencyManager-->>PaymentProcessor: Return Conversion Path
    PaymentProcessor->>TransactionManager: Process Payment
    TransactionManager-->>PaymentProcessor: Confirm Payment
    PaymentProcessor-->>User: Payment Successful
Loading
sequenceDiagram
    participant User
    participant RequestClient
    participant PaymentDetection

    User->>RequestClient: Send Payment Request
    RequestClient->>PaymentDetection: Detect Payment
    PaymentDetection-->>RequestClient: Payment Detected
    RequestClient-->>User: Confirmation Sent
Loading

Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

@MantisClone MantisClone merged commit dc13537 into master Jul 24, 2024
25 checks passed
@MantisClone MantisClone deleted the release branch July 24, 2024 22:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Fix the next-release workflow in CircleCI - it's publishing old version numbers
1 participant