Skip to content

Commit b99e049

Browse files
authored
Merge pull request #7 from intersystems/internal-updates
Bump versions and add changelog
2 parents 66d86df + 47b9d37 commit b99e049

File tree

2 files changed

+44
-8
lines changed

2 files changed

+44
-8
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# isc.rest
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased - 1.1.0+snapshot]
9+
10+
### Added
11+
- APPS-12985: Support removal of certain endpoints at the dispatch class and resource level
12+
via new `Supports()` method that can be overridden at REST handler and resource levels.
13+
- APPS-13327: Add "user-context" source for arguments in action map XData blocks.
14+
- APPS-13152: Do compile time validation for classes part of public API to ensure
15+
appropriate class members are overridden in subclasses.
16+
- APPS-12782: Support for fallback/default mimetype/representation of a resource when a
17+
regular expression of either `*/*` or `application/*` is used in an Accept header.
18+
19+
### Changed
20+
- APPS-13152: Locked down methods as final in classes part of public API.
21+
22+
### Fixed
23+
- APPS-13327: Fix a small issue in `$$$OperationAction` macro where lack of
24+
parentheses could cause invalid equality checks against an action name.
25+
26+
### Security
27+
-
28+
29+
### Removed
30+
-
31+
32+
### Deprecated
33+
-
34+
35+
## [1.0.1] - 2022-05-25
36+
- Last released version before CHANGELOG existed.
37+

module.xml

+7-8
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
2-
<Export generator="IRIS" version="26">
1+
<?xml version="1.0" encoding="UTF-8"?><Export generator="IRIS" version="26">
32
<Document name="isc.rest.ZPM">
43
<Module>
54
<Name>isc.rest</Name>
6-
<Version>1.0.0+snapshot</Version>
5+
<Version>1.1.0+snapshot</Version>
76
<Packaging>module</Packaging>
87
<Dependencies>
98
<ModuleReference>
109
<Name>isc.json</Name>
11-
<Version>^1.0.0</Version>
10+
<Version>^2.0.0</Version>
1211
</ModuleReference>
1312
</Dependencies>
1413
<Resources><Resource Name="pkg.isc.rest.lifecycle.CLS" Preload="true" />
15-
<Resource Name="%pkg.isc.rest.PKG"></Resource>
16-
<Resource Name="%pkg.isc.rest.openAPI.INC"></Resource>
17-
<Resource Name="%pkg.isc.rest.general.INC"></Resource>
14+
<Resource Name="%pkg.isc.rest.PKG"/>
15+
<Resource Name="%pkg.isc.rest.openAPI.INC"/>
16+
<Resource Name="%pkg.isc.rest.general.INC"/>
1817
<Resource Name="/internal/testing/unit_tests/">
1918
<Attribute Name="Package">UnitTest.isc.rest</Attribute>
2019
</Resource>
@@ -39,4 +38,4 @@
3938
</Module>
4039

4140

42-
</Document></Export>
41+
</Document></Export>

0 commit comments

Comments
 (0)