Skip to content

Commit 08f7faa

Browse files
Merge pull request #458 from Cognifide/bugfix/fix-http-repo-headers-config
Remove unused StringToPattern function
2 parents 7835e76 + fb0e209 commit 08f7faa

File tree

5 files changed

+18
-289
lines changed

5 files changed

+18
-289
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@ All notable changes to Knot.x will be documented in this file.
33

44
## Unreleased
55
List of changes that are finished but not yet released in any final version.
6-
- [PR-427[(https://github.com/Cognifide/knotx/pull/427) - HttpRepositoryConnectorProxyImpl logging improvements
6+
- [PR-427](https://github.com/Cognifide/knotx/pull/427) - HttpRepositoryConnectorProxyImpl logging improvements
77
- [PR-422](https://github.com/Cognifide/knotx/pull/422) - Configurable Handlebars delimiters
88
- [PR-428](https://github.com/Cognifide/knotx/pull/428) - Mark all Service Knot related classes deprecated.
99
- [PR-432](https://github.com/Cognifide/knotx/pull/432) - Port unit and integration tests to JUnit 5
1010
- [PR-440](https://github.com/Cognifide/knotx/pull/440) - Enable different Vert.x Config stores types fix.
1111
- [PR-443](https://github.com/Cognifide/knotx/pull/443) - Update maven plugins versions.
1212
- [PR-445](https://github.com/Cognifide/knotx/pull/445) - Vert.x version upgrade to 3.5.3
13+
- [PR-458](https://github.com/Cognifide/knotx/pull/458) - Remove unused StringToPattern function
1314

1415
## 1.3.0
1516
- [PR-376](https://github.com/Cognifide/knotx/pull/376) - Knot.x configurations refactor - Changed the way how configurations and it's defaults are build.

documentation/src/main/wiki/UpgradeNotes.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ from older than one version (e.g. 1.0.1 -> 1.1.2) be sure, to do all the steps f
55
versions. You may see all changes in the [Changelog](https://github.com/Cognifide/knotx/blob/master/CHANGELOG.md).
66

77
## Master
8-
9-
- [PR-427] https://github.com/Cognifide/knotx/pull/427 - HttpRepositoryConnectorProxyImpl logging improvements. Following log levels are now assigned depending on repository response status code:
8+
- [PR-427](https://github.com/Cognifide/knotx/pull/427) - HttpRepositoryConnectorProxyImpl logging improvements. Following log levels are now assigned depending on repository response status code:
109
```2xx - success - log at debug
1110
3xx - redirect - log at info
1211
4xx - client error - log at warn
1312
5xx - server error - log at error
1413
other - log at warn
1514
```
15+
- [PR-458](https://github.com/Cognifide/knotx/pull/458) - HttpRepositoryOptions now supports plain regex, e.g. `*` is no longer specially treated, replace it to regex `.*`
1616

1717
## Version 1.3.0
1818
List of changes that are finished but not yet released in any final version.
@@ -36,35 +36,35 @@ List of changes that are finished but not yet released in any final version.
3636
- `customRequestHeader` property in the Service Adapter renamed to `customHttpHeader`
3737
- Knot.x instance auto-redeploy itself after the configuration is changed.
3838
- Get rid of configuration override through system properties - only specific verticles can implement it by themselves if required (currently server only)
39-
- [PR-399](https://github.com/Cognifide/knotx/pull/399) - `knotx-core` now contains all base Knot.x
39+
- [PR-399](https://github.com/Cognifide/knotx/pull/399) - `knotx-core` now contains all base Knot.x
4040
concepts, Server, Repositories, Splitter, Assembler and Gateway are now one `knotx-core` module. This
4141
is just the beginning of the bigger changes to make Knot.x more concise and easier to understand.
4242
- [PR-405](https://github.com/Cognifide/knotx/pull/405) and [PR-412](https://github.com/Cognifide/knotx/pull/412) - Update of dependencies management in the core project. Switched to BOM style dependencies: [`knotx-dependencies`](https://github.com/Knotx/knotx-dependencies).
4343
Your custom modules may now just elegantly depend on this module that defines all necessary Knot.x dependencies versions.
44-
- [PR-406](https://github.com/Cognifide/knotx/pull/406) and [PR-411](https://github.com/Cognifide/knotx/pull/411) - `example` and `standalone` modules were not conceptually a part of Knot.x `core`.
44+
- [PR-406](https://github.com/Cognifide/knotx/pull/406) and [PR-411](https://github.com/Cognifide/knotx/pull/411) - `example` and `standalone` modules were not conceptually a part of Knot.x `core`.
4545
They were introduces as a quickstart option but having it in the core repository was misleading. We removed those modules and enabled [`knotx-stack`](https://github.com/Knotx/knotx-stack) to enable even easier and faster setup of Knot.x instance.
4646
- [PR-419](https://github.com/Cognifide/knotx/pull/419) - Knotx snippets parameters prefix is now customizable, default value is
47-
still `data-knotx` (to keep compatibility), however expect that in the future it will be empty by default
48-
(related to [PR-385](https://github.com/Cognifide/knotx/pull/385)). See more in [[Splitter|Splitter]] docs.
49-
Important change - earlier `snippetTagName` was defined directly in Splitter and Assembler configs.
47+
still `data-knotx` (to keep compatibility), however expect that in the future it will be empty by default
48+
(related to [PR-385](https://github.com/Cognifide/knotx/pull/385)). See more in [[Splitter|Splitter]] docs.
49+
Important change - earlier `snippetTagName` was defined directly in Splitter and Assembler configs.
5050
Since this PR it will be defined in the `snippetOptions` section, under `tagName` property.
5151
- [PR-421](https://github.com/Cognifide/knotx/pull/421) - support for system properties injection in HOCON config files. You can now customize your config file to use values from system properties. See [System properties in Config](https://github.com/Cognifide/knotx/wiki/Configuration#system-properties) documentation.
5252
5353
5454
## Version 1.2.1
55-
- [PR-385](https://github.com/Cognifide/knotx/pull/385) - From now on you can define the custom
56-
`snippetTagName` and use that tag name to define dynamic snippets in the templates (instead of
55+
- [PR-385](https://github.com/Cognifide/knotx/pull/385) - From now on you can define the custom
56+
`snippetTagName` and use that tag name to define dynamic snippets in the templates (instead of
5757
default `<script>`). Read more about that chang in [[Splitter|Splitter]] and [[Assembler|Assembler]] docs.
5858
5959
## Version 1.2.0
6060
- [PR-345](https://github.com/Cognifide/knotx/pull/335) - Update to Vert.x 3.5 and RxJava 2. Most notable changes are upgrade of Vert.x and RxJava.
6161
The API is changed, so your custom implementations need to adopt to the latest APIs both of Vert.x and RxJava.
6262
- [PR-320](https://github.com/Cognifide/knotx/pull/320) - Now you can configure the file-uploads folder for POST requests. See [Server options](https://github.com/Cognifide/knotx/wiki/Server#server-options) for details.
6363
- [PR-347](https://github.com/Cognifide/knotx/pull/320) - You can now add [custom response header](https://github.com/Cognifide/knotx/wiki/Server#server-options) to the Server. Also custom header can be added to [repository](https://github.com/Cognifide/knotx/wiki/HttpRepositoryConnector#options) & [service](https://github.com/Cognifide/knotx/wiki/HttpServiceAdapter#how-to-configure) requests.
64-
- [PR-349](https://github.com/Cognifide/knotx/pull/349) - You can pass [`Delivery Options`](http://vertx.io/docs/apidocs/io/vertx/core/eventbus/DeliveryOptions.html) to Knot.x Verticles e.g. to manipulate eventbus response timeouts.
64+
- [PR-349](https://github.com/Cognifide/knotx/pull/349) - You can pass [`Delivery Options`](http://vertx.io/docs/apidocs/io/vertx/core/eventbus/DeliveryOptions.html) to Knot.x Verticles e.g. to manipulate eventbus response timeouts.
6565
For more details see documentation sections in [[Server|Server#vertx-event-bus-delivery-options]], [[Action Knot|ActionKnot#vertx-event-bus-delivery-options]] and [[Service Knot|ServiceKnot#vertx-event-bus-delivery-options]].
6666
- [PR-354](https://github.com/Cognifide/knotx/pull/354) - You can now enable XSRF protection on default or custom flow at any path. See [[Server|Server#how-to-enable-csrf-token-generation-and-validation]] for details.
67-
- [PR-359](https://github.com/Cognifide/knotx/pull/359) - From now on Knot.x responses with the response of a repository in case of response with status code different than 200.
67+
- [PR-359](https://github.com/Cognifide/knotx/pull/359) - From now on Knot.x responses with the response of a repository in case of response with status code different than 200.
6868
You may play with [`displayExceptionDetails`](https://github.com/Cognifide/knotx/wiki/Server#server-options) flag
6969
in order to receive errors stack traces.
7070
- [PR-369](https://github.com/Cognifide/knotx/pull/369) - Better support for SSL for Repository Connector. Please check the documentation of [[HttpRepositoryConnector|HttpRepositoryConnector#how-to-configure-ssl-connection-to-the-repository]] for details of how to setup SSL connection.
@@ -74,9 +74,9 @@ For more details see documentation sections in [[Server|Server#vertx-event-bus-d
7474
7575
## Version 1.1.2
7676
- [PR-335](https://github.com/Cognifide/knotx/pull/335) - Added support for HttpServerOptions on the configuration level.
77-
* **Important**: The biggest change here is the way port of [[Knot.x Server|Server#vertx-http-server-configurations]] is configured.
78-
Previously it was defined in the `config.httpPort` property. Now `serverOptions` section was introduced, see
79-
[Vert.x DataObjects page](http://vertx.io/docs/vertx-core/dataobjects.html#HttpServerOptions) for more details.
77+
* **Important**: The biggest change here is the way port of [[Knot.x Server|Server#vertx-http-server-configurations]] is configured.
78+
Previously it was defined in the `config.httpPort` property. Now `serverOptions` section was introduced, see
79+
[Vert.x DataObjects page](http://vertx.io/docs/vertx-core/dataobjects.html#HttpServerOptions) for more details.
8080
See example change of configuration
8181
[here](https://github.com/Cognifide/knotx/pull/335/files#diff-9eb56f60d7dcc72e56694b1a0aeb014dL5).
8282
@@ -91,9 +91,9 @@ For more details see documentation sections in [[Server|Server#vertx-event-bus-d
9191
* **Important**: structure of [[Knot.x Server|Server]] configuration has changed because [[Gateway Mode|GatewayMode]] was introduced.
9292
Now, to configure custom `repositories`, `splitter`, `assembler` and `routing` move all those sections to `defaultFlow`.
9393
See the example change [here](https://github.com/Cognifide/knotx/pull/299/files#diff-d4c26ef67612264e462c7e4a882023cdL38).
94-
Additionally, new configuration section (which is not mandatory) `customFlow` was introduced. Read more about it
94+
Additionally, new configuration section (which is not mandatory) `customFlow` was introduced. Read more about it
9595
in [[Gateway Mode|GatewayMode]] docs.
96-
- [PR-306](https://github.com/Cognifide/knotx/pull/306) - Additional parameters to adapter from template.
96+
- [PR-306](https://github.com/Cognifide/knotx/pull/306) - Additional parameters to adapter from template.
9797
* You may pass additional parameters to Action Adapters using `data-knotx-adapter-params`. Read more in [[Action Knot|ActionKnot#example]] docs.
9898
9999
## Version 1.0.1

knotx-core/src/main/java/io/knotx/http/StringToPatternFunction.java

-60
This file was deleted.

knotx-core/src/test/java/io/knotx/http/AllowedHeadersFilterTest.java

-90
This file was deleted.

knotx-core/src/test/java/io/knotx/http/StringToPatternFunctionTest.java

-122
This file was deleted.

0 commit comments

Comments
 (0)