Skip to content

Commit

Permalink
chore: update to bee 1.12.0 (#820)
Browse files Browse the repository at this point in the history
* chore: update to bee

* chore: update to bee

* chore: update to bee

* chore: update to bee

* chore: update to bee

* chore: update to bee

* chore: update to bee

* fix: wait for usable in immutable stamp test

* fix: increase test timeout

---------

Co-authored-by: Cafe137 <[email protected]>
  • Loading branch information
bee-worker and Cafe137 authored Feb 20, 2023
1 parent 7715c99 commit 3a6e70b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
**Warning: This project is in beta state. There might (and most probably will) be changes in the future to its API and working. Also, no guarantees can be made about its stability, efficiency, and security at this stage.**

This project is intended to be used with **Bee version <!-- SUPPORTED_BEE_START -->1.11.1<!-- SUPPORTED_BEE_END -->**. Using it with older or newer Bee versions is not recommended and may not work. Stay up to date by joining the [official Discord](https://discord.gg/GU22h2utj6) and by keeping an eye on the [releases tab](https://github.com/ethersphere/bee-js/releases).
This project is intended to be used with **Bee version <!-- SUPPORTED_BEE_START -->1.12.0<!-- SUPPORTED_BEE_END -->**. Using it with older or newer Bee versions is not recommended and may not work. Stay up to date by joining the [official Discord](https://discord.gg/GU22h2utj6) and by keeping an eye on the [releases tab](https://github.com/ethersphere/bee-js/releases).

## Table of Contents

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,6 @@
"npm": ">=6.0.0",
"beeApiVersion": "4.0.0",
"beeDebugApiVersion": "4.0.0",
"bee": "1.11.1-1992b846"
"bee": "1.12.0-88c1d236"
}
}
2 changes: 1 addition & 1 deletion src/modules/debug/status.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { Options as KyOptions } from 'ky'

// Following lines bellow are automatically updated with GitHub Action when Bee version is updated
// so if you are changing anything about them change the `update_bee` action accordingly!
export const SUPPORTED_BEE_VERSION_EXACT = '1.11.1-1992b846'
export const SUPPORTED_BEE_VERSION_EXACT = '1.12.0-88c1d236'
export const SUPPORTED_API_VERSION = '4.0.0'
export const SUPPORTED_DEBUG_API_VERSION = '4.0.0'

Expand Down
6 changes: 3 additions & 3 deletions test/integration/bee-debug-class.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ describe('Bee Debug class', () => {
})

it('should have both immutable true and false', async function () {
this.timeout(BLOCKCHAIN_TRANSACTION_TIMEOUT * 2)
await beeDebug.createPostageBatch('1', 17, { immutableFlag: true, waitForUsable: false })
await beeDebug.createPostageBatch('1', 17, { immutableFlag: false, waitForUsable: false })
this.timeout(WAITING_USABLE_STAMP_TIMEOUT * 2 + BLOCKCHAIN_TRANSACTION_TIMEOUT * 4)
await beeDebug.createPostageBatch('1', 17, { immutableFlag: true, waitForUsable: true })
await beeDebug.createPostageBatch('1', 17, { immutableFlag: false, waitForUsable: true })
const allBatches = await beeDebug.getAllPostageBatch()

expect(allBatches.find(batch => batch.immutableFlag === true)).to.be.ok()
Expand Down

0 comments on commit 3a6e70b

Please sign in to comment.