Skip to content

Commit

Permalink
Merge pull request #2096 from ballerina-platform/update10-fixes
Browse files Browse the repository at this point in the history
Revert making the resource parameter annotations constant
  • Loading branch information
TharmiganK committed Aug 6, 2024
2 parents e79c22f + 6821629 commit c14febb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ballerina/http_annotation.bal
Original file line number Diff line number Diff line change
Expand Up @@ -113,13 +113,13 @@ public type HttpHeader record {|
|};

# The annotation which is used to define the Header resource signature parameter.
public const annotation HttpHeader Header on parameter;
public annotation HttpHeader Header on parameter;

# Defines the query resource signature parameter.
public type HttpQuery record {||};

# The annotation which is used to define the query resource signature parameter.
public const annotation HttpQuery Query on parameter;
public annotation HttpQuery Query on parameter;

# Defines the HTTP response cache configuration. By default the `no-cache` directive is setted to the `cache-control`
# header. In addition to that `etag` and `last-modified` headers are also added for cache validation.
Expand Down
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- [Add support for Server-Sent Events](https://github.com/ballerina-platform/ballerina-library/issues/6687)
- [Introduce default status code response record](https://github.com/ballerina-platform/ballerina-library/issues/6491)
- [Add connection eviction feature to handle connections that receive GO_AWAY from the client](https://github.com/ballerina-platform/ballerina-library/issues/6734)
- [Enhanced the configurability of Ballerina access logging by introducing multiple configuration options.](https://github.com/ballerina-platform/ballerina-library/issues/6111)
- [Enhance the configurability of Ballerina access logging by introducing multiple configuration options.](https://github.com/ballerina-platform/ballerina-library/issues/6111)
- [Introduce HTTP service contract object type](https://github.com/ballerina-platform/ballerina-library/issues/6378)

### Fixed
Expand Down

0 comments on commit c14febb

Please sign in to comment.