@twin.org/nft-service 0.9.0-next.1 → 0.9.1-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/docs/changelog.md +39 -0
  2. package/package.json +8 -8
package/docs/changelog.md CHANGED
@@ -1,5 +1,44 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.9.1-next.1](https://github.com/iotaledger/twin-nft/compare/nft-service-v0.9.1-next.0...nft-service-v0.9.1-next.1) (2026-06-26)
4
+
5
+
6
+ ### Features
7
+
8
+ * add context id features ([#50](https://github.com/iotaledger/twin-nft/issues/50)) ([56c31c7](https://github.com/iotaledger/twin-nft/commit/56c31c7ba10e3ef8ad44f6463153f90888e64711))
9
+ * add on-chain identity binding to NFT minting ([#58](https://github.com/iotaledger/twin-nft/issues/58)) ([730a16d](https://github.com/iotaledger/twin-nft/commit/730a16d70fc026c920dbede0e4dafc96f37b729a))
10
+ * add validate-locales ([0055a56](https://github.com/iotaledger/twin-nft/commit/0055a56ed166946f1db860aa0725ad53248b3427))
11
+ * eslint migration to flat config ([0e6fc12](https://github.com/iotaledger/twin-nft/commit/0e6fc128c3c8f6cd34db793787437dd4af2c9994))
12
+ * iota rebased release ([bfdd233](https://github.com/iotaledger/twin-nft/commit/bfdd23330e168962f7ad0a6fcd2c9c9a38a11697))
13
+ * move to json integration ([#31](https://github.com/iotaledger/twin-nft/issues/31)) ([89944ba](https://github.com/iotaledger/twin-nft/commit/89944ba05b955944f84419224c3ae63fef28cc23))
14
+ * remove unused namespace ([48d2a92](https://github.com/iotaledger/twin-nft/commit/48d2a926d610fad0b0407311e71a215d15a99aa5))
15
+ * typescript 6 update ([91b94b8](https://github.com/iotaledger/twin-nft/commit/91b94b846ea081b09b2228681776ce30f104a36e))
16
+ * update dependencies ([8660f76](https://github.com/iotaledger/twin-nft/commit/8660f76ca324b0f476e45544cac6bee4b3146c3b))
17
+ * update framework core ([f3496b6](https://github.com/iotaledger/twin-nft/commit/f3496b61bfebbb3479bb92df39ecfa9ac8d90b9b))
18
+ * use shared store mechanism ([#16](https://github.com/iotaledger/twin-nft/issues/16)) ([897bc78](https://github.com/iotaledger/twin-nft/commit/897bc7805248ba1388b2dd03df24c33f1633f344))
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * params order modified ([#19](https://github.com/iotaledger/twin-nft/issues/19)) ([c2ceb30](https://github.com/iotaledger/twin-nft/commit/c2ceb3040c12286d4fac09d51db77465366ba89d))
24
+
25
+
26
+ ### Dependencies
27
+
28
+ * The following workspace dependencies were updated
29
+ * dependencies
30
+ * @twin.org/nft-models bumped from 0.9.1-next.0 to 0.9.1-next.1
31
+ * devDependencies
32
+ * @twin.org/nft-connector-entity-storage bumped from 0.9.1-next.0 to 0.9.1-next.1
33
+
34
+ ## [0.9.0](https://github.com/iotaledger/twin-nft/compare/nft-service-v0.9.0...nft-service-v0.9.0) (2026-06-25)
35
+
36
+
37
+ ### Features
38
+
39
+ * release to production ([4d338b3](https://github.com/iotaledger/twin-nft/commit/4d338b3e8a4dbccc61a1d1da3c470ba86cefe535))
40
+ * release to production ([#80](https://github.com/iotaledger/twin-nft/issues/80)) ([b4d903e](https://github.com/iotaledger/twin-nft/commit/b4d903e1459782b30240317a964e787f3b9f957f))
41
+
3
42
  ## [0.9.0-next.1](https://github.com/iotaledger/twin-nft/compare/nft-service-v0.9.0-next.0...nft-service-v0.9.0-next.1) (2026-06-23)
4
43
 
5
44
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/nft-service",
3
- "version": "0.9.0-next.1",
3
+ "version": "0.9.1-next.1",
4
4
  "description": "NFT service orchestration with REST route generation.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,13 +14,13 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@twin.org/api-models": "0.9.0-next.1",
18
- "@twin.org/context": "0.9.0-next.1",
19
- "@twin.org/core": "0.9.0-next.1",
20
- "@twin.org/entity": "0.9.0-next.1",
21
- "@twin.org/nameof": "0.9.0-next.1",
22
- "@twin.org/nft-models": "0.9.0-next.1",
23
- "@twin.org/web": "0.9.0-next.1"
17
+ "@twin.org/api-models": "next",
18
+ "@twin.org/context": "next",
19
+ "@twin.org/core": "next",
20
+ "@twin.org/entity": "next",
21
+ "@twin.org/nameof": "next",
22
+ "@twin.org/nft-models": "0.9.1-next.1",
23
+ "@twin.org/web": "next"
24
24
  },
25
25
  "main": "./dist/es/index.js",
26
26
  "types": "./dist/types/index.d.ts",