File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
pkg/innerring/processors/container Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Changelog for NeoFS Node
1010- SN tries new NEP-11 methods ` tokens ` and ` tokensOf ` of Container contract (#3701 )
1111- SN now listens to NEP-11 ` transfer ` events of Container contract (#3701 )
1212- CLI supports ` CONTAINER_AWAIT_TIMEOUT ` status now (#3711 )
13+ - Containers can now be locked for deletion via ` __NEOFS__LOCK_UNTIL ` attribute (#3708 )
1314
1415### Fixed
1516- IR panics at graceful shutdown (#3706 )
@@ -23,7 +24,7 @@ Changelog for NeoFS Node
2324### Removed
2425
2526### Updated
26- - ` github.com/nspcc-dev/neofs-contract ` module to ` v0.25.2-0.20251124180339-40ec608b4893 ` (#3670 )
27+ - ` github.com/nspcc-dev/neofs-contract ` module to ` v0.25.2-0.20251205135906-a62baeafe648 ` (#3670 , # 3708 )
2728- ` github.com/nspcc-dev/neofs-sdk-go ` module to ` v1.0.0-rc.16.0.20251203135706-86667929fbb8 ` (#3711 )
2829
2930### Updating from v0.50.2
Original file line number Diff line number Diff 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.20251205135906-a62baeafe648
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
Original file line number Diff line number Diff line change @@ -197,8 +197,8 @@ github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20251112080609-3c8e29c66609 h1:9j
197197github.com/nspcc-dev/neo-go/pkg/interop v0.0.0-20251112080609-3c8e29c66609 /go.mod h1:X2spkE8hK/l08CYulOF19fpK5n3p2xO0L1GnJFIywQg =
198198github.com/nspcc-dev/neofs-api-go/v2 v2.14.1-0.20240827150555-5ce597aa14ea h1:mK0EMGLvunXcFyq7fBURS/CsN4MH+4nlYiqn6pTwWAU =
199199github.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.20251205135906-a62baeafe648 h1:+XeIIHNq/6I6RFGCNmk+DfOrhY+9l4oX0gr1KjFr9ts =
201+ github.com/nspcc-dev/neofs-contract v0.25.2-0.20251205135906-a62baeafe648 /go.mod h1:CYX51uP2pNBCK7Q0ygD1LNsoFSHbB2F5luaBrluFkUo =
202202github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.16.0.20251203135706-86667929fbb8 h1:oasL8SD11yOmW0a/GqMmm4/0sb86hMOYMi7HC20PIb0 =
203203github.com/nspcc-dev/neofs-sdk-go v1.0.0-rc.16.0.20251203135706-86667929fbb8 /go.mod h1:IrM1JG/klBtecZEApIf8USgLonNcarv32R1O0dj4kQI =
204204github.com/nspcc-dev/rfc6979 v0.2.4 h1:NBgsdCjhLpEPJZqmC9rciMZDcSY297po2smeaRjw57k =
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments