-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: feed chunk wrapping merge (#954)
* feat!: merge api (#920) * test: add shape tests * feat: merge api * chore(master): release 7.0.0 (#921) * fix: floor update feed timestamp (#923) * chore(master): release 7.0.1 (#924) * fix: allow falsy feed index (#925) * chore(master): release 7.0.2 (#926) * fix: ignore errors while waiting for stamp (#927) * chore(master): release 7.0.3 (#928) * docs: fix typos (#922) * fix: add chaintip field (#931) * chore(master): release 7.0.4 (#932) * feat: add capitalizeAddressERC55 function (#933) * feat: add capitalizeAddressERC55 function * chore: code style * chore(master): release 7.1.0 (#934) * build: disable legacy peer deps (#935) * fix: correct jsdocs links (#938) * fix: correct jsdocs links * chore: update depcheck * chore: code style * chore(master): release 7.1.1 (#939) * docs: add quick start section (#940) * fix: fix tar padding (#943) * chore(master): release 7.1.2 (#944) * feat!: add act (#942) * feat(act): add act * feat(act): rename addGrantees to createGrantees * feat(act): remove mention of ENS name in getGrantees method comment * feat(act): add grantee module for managing grantees * feat(act): revert import chai and jestExpect in bzz.spec.ts * feat(act): improve documentation for the createGrantees method * feat(act)!: update the return type of chunk upload to UploadResult from Reference * feat(act)!: update the return type of soc upload to UploadResult from Reference * feat(act): fix linter errors --------- Co-authored-by: Ferenc Sárai <[email protected]> * chore: fine-tune act namings (#946) * chore(master): release 8.0.0 (#945) * fix: allow collection items with zero size (#947) * fix: allow collection items with zero size * style: add newline * chore(master): release 8.0.1 (#948) * fix: handle bad request in feed index lookup (#949) * chore(master): release 8.0.2 (#950) * feat: harden internals (#952) * ci: repair jobs * ci: remove debug version bump * ci: specify exact fdp-play version * feat: harden internals * style: add newline * build: remove unnecessary dependencies --------- Co-authored-by: bee-worker <[email protected]> Co-authored-by: Pablo Castellano <[email protected]> Co-authored-by: Ferenc Sárai <[email protected]> Co-authored-by: Ferenc Sárai <[email protected]>
- Loading branch information
1 parent
8043ac3
commit ad9d6d2
Showing
157 changed files
with
9,733 additions
and
6,807 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ on: | |
repository_dispatch: | ||
types: [update-bee] | ||
|
||
|
||
jobs: | ||
create-api-docs-pr: | ||
runs-on: ubuntu-latest | ||
|
@@ -57,13 +56,6 @@ jobs: | |
field: engines.beeApiVersion | ||
value: ${{ env.API_VERSION }} | ||
|
||
- name: Replace Debug API version in package.json | ||
uses: jossef/action-set-json-field@v1 | ||
with: | ||
file: package.json | ||
field: engines.beeDebugApiVersion | ||
value: ${{ env.DEBUG_API_VERSION }} | ||
|
||
- name: Add trailing new-line to package.json | ||
run: printf "\n" >> package.json | ||
|
||
|
@@ -72,30 +64,22 @@ jobs: | |
with: | ||
find: "export const SUPPORTED_BEE_VERSION_EXACT = '.*?'" | ||
replace: "export const SUPPORTED_BEE_VERSION_EXACT = '${{ env.BEE_VERSION_WITH_COMMIT }}'" | ||
include: "src/modules/debug/status.ts" | ||
include: 'src/modules/debug/status.ts' | ||
regex: true | ||
|
||
- name: Replace SUPPORTED_API_VERSION for Status module | ||
uses: jacobtomlinson/gha-find-replace@v2 | ||
with: | ||
find: "export const SUPPORTED_API_VERSION = '.*?'" | ||
replace: "export const SUPPORTED_API_VERSION = '${{ env.API_VERSION }}'" | ||
include: "src/modules/debug/status.ts" | ||
regex: true | ||
|
||
- name: Replace SUPPORTED_DEBUG_API_VERSION for Status module | ||
uses: jacobtomlinson/gha-find-replace@v2 | ||
with: | ||
find: "export const SUPPORTED_DEBUG_API_VERSION = '.*?'" | ||
replace: "export const SUPPORTED_DEBUG_API_VERSION = '${{ env.DEBUG_API_VERSION }}'" | ||
include: "src/modules/debug/status.ts" | ||
include: 'src/modules/debug/status.ts' | ||
regex: true | ||
|
||
- name: Replace README version | ||
uses: jacobtomlinson/gha-find-replace@v2 | ||
with: | ||
find: "<!-- SUPPORTED_BEE_START -->.*?<!-- SUPPORTED_BEE_END -->" | ||
replace: "<!-- SUPPORTED_BEE_START -->${{ env.FINAL_CLEAN_BEE_VERSION }}<!-- SUPPORTED_BEE_END -->" | ||
find: '<!-- SUPPORTED_BEE_START -->.*?<!-- SUPPORTED_BEE_END -->' | ||
replace: '<!-- SUPPORTED_BEE_START -->${{ env.FINAL_CLEAN_BEE_VERSION }}<!-- SUPPORTED_BEE_END -->' | ||
include: README.md | ||
regex: true | ||
|
||
|
@@ -105,11 +89,11 @@ jobs: | |
env: | ||
GITHUB_TOKEN: ${{ secrets.REPO_GHA_PAT }} | ||
with: | ||
title: "chore: update to bee ${{ env.FINAL_CLEAN_BEE_VERSION }}" | ||
body: "Updated Bee version ${{ env.BEE_VERSION_WITH_COMMIT }}" | ||
branch: "bee-${{ env.FINAL_CLEAN_BEE_VERSION }}" | ||
commit-message: "chore: update to bee" | ||
author: "bee-worker <[email protected]>" | ||
title: 'chore: update to bee ${{ env.FINAL_CLEAN_BEE_VERSION }}' | ||
body: 'Updated Bee version ${{ env.BEE_VERSION_WITH_COMMIT }}' | ||
branch: 'bee-${{ env.FINAL_CLEAN_BEE_VERSION }}' | ||
commit-message: 'chore: update to bee' | ||
author: 'bee-worker <[email protected]>' | ||
|
||
- uses: joutvhu/get-release@v1 | ||
id: release-notes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,3 +28,8 @@ node_modules | |
|
||
# Generated files | ||
docs | ||
|
||
*.shape | ||
shaper.ts | ||
|
||
test/primitives/32mb.bin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.