Skip to content

Commit cda34be

Browse files
committed
Merge branch 'main' into fdc3-new-conformance
2 parents 2225958 + d4a261a commit cda34be

45 files changed

Lines changed: 1927 additions & 71 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/coverage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ jobs:
5151
output: test-summary.md
5252
if: always()
5353

54+
# Only post comments if the PR came from FINOS (the only repo with permission to run it)
5455
- name: PR comment with file
56+
if: github.event.pull_request.head.repo.full_name == 'finos/FDC3'
5557
uses: thollander/actions-comment-pull-request@v3
5658
with:
5759
file-path: test-summary.md

.node-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.16.*
1+
22

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18.16.*
1+
22

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
77
## [Unreleased]
88

99
### Added
10+
* Removes sourcemaps from npm package output ([#1589](https://github.com/finos/FDC3/issues/1589))
11+
* Add a notes field to Trade type ([#1563](https://github.com/finos/FDC3/pull/1563))
12+
* Add a notes field to Order and Product types ([#1597](https://github.com/finos/FDC3/pull/1597))
13+
* Added Go language binding. ([#1483](https://github.com/finos/FDC3/pull/1483))
14+
15+
* Added details of and procedures for resolving fully-qualified appIds and unqualified appIds in the API and Bridging Parts of the Standard. ([#1523](https://github.com/finos/FDC3/pull/1523))
1016

1117
- Ported FDC3 Conformance Project as-is into the FDC3 Monorepo, just including minimal fixes for typescript compilation. ([#1576](https://github.com/finos/FDC3/pull/1576))
1218

@@ -15,6 +21,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1521
### Deprecated
1622

1723
### Fixed
24+
* Add unit tests to the fdc3-context package for validating context examples are valid schema.
25+
* Revert schema of `fdc3.timeRange` context type back to use anyOf in place of oneOf for the `startTime` and `endTime` property combinations. This will allow existence of one of either, or both, and pass schema validation. When defined with oneOf, validation would fail due to multiple entries being valid and it could not identify which to apply. ([#1592](https://github.com/finos/FDC3/issues/1592))
26+
* Revert schema of `fdc3.interaction` context type back to use anyOf in place of oneOf for the `interactionType` property. Since it could be a string enum or a string, validation could not differentiate. ([#1598](https://github.com/finos/FDC3/issues/1598))
27+
* Fix `fdc3.timeRange` context example to use correctly formatted dateTime. ([#1599](https://github.com/finos/FDC3/issues/1599))
1828

1929
## [FDC3 Standard 2.2](https://github.com/finos/FDC3/compare/v2.1..v2.2) - 2025-03-12
2030

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ This is a 4-step process:
132132
3. **Push the branch to publish the packages to npm**
133133

134134
```bash
135+
git add .
136+
git commit -m "Updated to version vx.x"
135137
git push origin release/v2.0
136138
```
137139

netlify.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@
66
for = "/*"
77
[headers.values]
88
Access-Control-Allow-Origin = "*"
9+
10+
[build.environment]
11+
NODE_VERSION = "22"

package-lock.json

Lines changed: 105 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)