Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post release #1697

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
IMAGE_NAME: orion-ld
IMAGE_TAG_LATEST: latest
IMAGE_TAG_DEBUG: debug
IMAGE_TAG_PRE: 1.7.0-PRE-${{ github.run_number }}
IMAGE_TAG_PRE: 1.8.0-PRE-${{ github.run_number }}

jobs:

Expand Down
16 changes: 2 additions & 14 deletions CHANGES_NEXT_RELEASE
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
## Fixed Issues:
#1621: URL-Encoding single quote in attribute values in TRoE DB
#1649: Crash when using subscriptions in a mixed environment (LD and V2)
#1682: Default User Context
#1688: Forward of idPattern URL parameter
#0000: nada

## New Features:
* Native support for DDS (off by default - to activate use CLI: -wip dds)
* Distributed subscriptions: subordinate subscriptions are DELETED when their "father" is deleted.
* Support for the URL parameter 'csf' in GET /ngsi-ld/v1/csourceRegistrations
* Support for the URL parameter 'orderBy' (must be an attribute) in GET /ngsi-ld/v1/entities, but only if 'local' is set. (This is not NGSI-LD standard. Yet ...)
- Also supporting sorting on entity id, type, and modifiedAt
- One more URL parameter '?reverse=true' to reverse the sorting order
* Support for GET /ngsi-ld/v1/info/sourceIdentity
* Support for management::localOnly in registrations
* Support for new CLI parameter '-pageSize' to set the default pagination limit (default is 20 if -pageSize is not used)
* Support for ...

## Notes
* Lots of improvements for subordinate subscriptions - still not 100% ready, but a lot better.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ If you want to use a more stable image, the latest release (as of July 2024) is
[1.6.0](https://github.com/FIWARE/context.Orion-LD/releases/tag/1.6.0)

```console
docker run quay.io/fiware/orion-ld:1.6.0
docker run quay.io/fiware/orion-ld:1.7.0
```

Please check [quay.io](https://quay.io/repository/fiware/orion-ld?tab=tags) or [dockerhub](https://hub.docker.com/r/fiware/orion-ld/tags) for other releases.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/orionld/common/orionldState.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ extern "C"
//
// ORIONLD_VERSION -
//
#define ORIONLD_VERSION "post-v1.6.0"
#define ORIONLD_VERSION "post-v1.7.0"



Expand Down
Loading