Skip to content

Commit ff1db20

Browse files
committed
go.mod: Upgrade github.com/nspcc-dev/neofs-contract to the latest
This auto-makes IR to deploy/update Container contract with supported locks nspcc-dev/neofs-contract#558. This also makes IR to accept containers with lock attribute. Signed-off-by: Leonard Lyubich <[email protected]>
1 parent b71983d commit ff1db20

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Changelog for NeoFS Node
1111
- SN now listens to NEP-11 `transfer` events of Container contract (#3701)
1212
- CLI supports `CONTAINER_AWAIT_TIMEOUT` status now (#3711)
1313
- Policer logs when it reaches the end of its cycle (#3720)
14+
- Containers can now be locked for deletion via `__NEOFS__LOCK_UNTIL` attribute (#3708)
1415

1516
### Fixed
1617
- IR panics at graceful shutdown (#3706)

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
github.com/nspcc-dev/locode-db v0.8.1
2222
github.com/nspcc-dev/neo-go v0.114.0
2323
github.com/nspcc-dev/neofs-api-go/v2 v2.14.1-0.20240827150555-5ce597aa14ea
24-
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251124180339-40ec608b4893
24+
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251208151418-d34e3802d8c3
2525
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.16.0.20251203135706-86667929fbb8
2626
github.com/nspcc-dev/tzhash v1.8.3
2727
github.com/panjf2000/ants/v2 v2.11.3

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20251112080609-3c8e29c66609 h1:9j
197197
github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20251112080609-3c8e29c66609/go.mod h1:X2spkE8hK/l08CYulOF19fpK5n3p2xO0L1GnJFIywQg=
198198
github.com/nspcc-dev/neofs-api-go/v2 v2.14.1-0.20240827150555-5ce597aa14ea h1:mK0EMGLvunXcFyq7fBURS/CsN4MH+4nlYiqn6pTwWAU=
199199
github.com/nspcc-dev/neofs-api-go/v2 v2.14.1-0.20240827150555-5ce597aa14ea/go.mod h1:YzhD4EZmC9Z/PNyd7ysC7WXgIgURc9uCG1UWDeV027Y=
200-
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251124180339-40ec608b4893 h1:sh25Y5GMLL9ixlcJdbktHkFUY3nyK9DeLY5EBaEQDwQ=
201-
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251124180339-40ec608b4893/go.mod h1:CYX51uP2pNBCK7Q0ygD1LNsoFSHbB2F5luaBrluFkUo=
200+
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251208151418-d34e3802d8c3 h1:L3ck8vHfeewmHBbb9sBhrKmx450YEiQ1Dox2Y09SXZY=
201+
github.com/nspcc-dev/neofs-contract v0.25.2-0.20251208151418-d34e3802d8c3/go.mod h1:CYX51uP2pNBCK7Q0ygD1LNsoFSHbB2F5luaBrluFkUo=
202202
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.16.0.20251203135706-86667929fbb8 h1:oasL8SD11yOmW0a/GqMmm4/0sb86hMOYMi7HC20PIb0=
203203
github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.16.0.20251203135706-86667929fbb8/go.mod h1:IrM1JG/klBtecZEApIf8USgLonNcarv32R1O0dj4kQI=
204204
github.com/nspcc-dev/rfc6979 v0.2.4 h1:NBgsdCjhLpEPJZqmC9rciMZDcSY297po2smeaRjw57k=

pkg/innerring/processors/container/process_container.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ var allowedSystemAttributes = map[string]struct{}{
8888
sysAttrPrefix + "NAME": {},
8989
sysAttrPrefix + "ZONE": {},
9090
sysAttrPrefix + "DISABLE_HOMOMORPHIC_HASHING": {},
91+
sysAttrPrefix + "LOCK_UNTIL": {},
9192
sysAttrChainMeta: {},
9293
}
9394

0 commit comments

Comments
 (0)