diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3d780158..fd9c803d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,19 @@ This project adheres to [Semantic Versioning](http://semver.org/).
## [Unreleased]
+## [0.15.0]
+
+### Added
+- Allow filtering activedocs by Service ID [#225](https://github.com/3scale/3scale_toolbox/pull/225)
+- OpenAPI 3 support [#226](https://github.com/3scale/3scale_toolbox/pull/226)
+- Add prefix matching flag for mapping rules in import openapi command [#224](https://github.com/3scale/3scale_toolbox/pull/224)
+- Add custom host header and secret token options for import openapi [#221](https://github.com/3scale/3scale_toolbox/pull/221)
+- Deprecate ruby 2.4 [#232](https://github.com/3scale/3scale_toolbox/pull/232)
+
+### Fixed
+- Make activedocs apply command not set *skip_swagger_validations* on activedocs update [#227](https://github.com/3scale/3scale_toolbox/pull/227)
+- copy service command copies oidc conf [#228](https://github.com/3scale/3scale_toolbox/pull/228)
+
## [0.14.0]
### Fixed
@@ -204,7 +217,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- `3scale copy service` command to copy a service
including its metrics, methods, application plans and their usage limits
-[Unreleased]: https://github.com/3scale/3scale_toolbox/compare/v0.14.0...HEAD
+[Unreleased]: https://github.com/3scale/3scale_toolbox/compare/v0.15.0...HEAD
+[0.15.0]: https://github.com/3scale/3scale_toolbox/releases/tag/v0.15.0
[0.14.0]: https://github.com/3scale/3scale_toolbox/releases/tag/v0.14.0
[0.13.0]: https://github.com/3scale/3scale_toolbox/releases/tag/v0.13.0
[0.12.4]: https://github.com/3scale/3scale_toolbox/releases/tag/v0.12.4
diff --git a/Gemfile.lock b/Gemfile.lock
index 1ef11c60..ef2bb469 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- 3scale_toolbox (0.14.0)
+ 3scale_toolbox (0.15.0)
3scale-api (~> 0.6.0)
cri (~> 2.15)
json-schema (~> 2.8)
@@ -11,14 +11,15 @@ GEM
remote: https://rubygems.org/
specs:
3scale-api (0.6.0)
- activesupport (5.2.3)
+ activesupport (6.0.2.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
+ zeitwerk (~> 2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
- builder (3.2.3)
+ builder (3.2.4)
coderay (1.1.2)
concurrent-ruby (1.1.5)
crack (0.4.3)
@@ -30,7 +31,7 @@ GEM
hansi (0.2.0)
hash-deep-merge (0.1.1)
hashdiff (1.0.0)
- i18n (1.7.0)
+ i18n (1.8.2)
concurrent-ruby (~> 1.0)
json-schema (2.8.1)
addressable (>= 2.4)
@@ -43,14 +44,14 @@ GEM
xml-simple
method_source (0.9.2)
mini_portile2 (2.4.0)
- minitest (5.13.0)
+ minitest (5.14.0)
mustermann (1.0.3)
mustermann-contrib (1.0.3)
hansi (~> 0.2.0)
mustermann (= 1.0.3)
- nokogiri (1.10.5)
+ nokogiri (1.10.7)
mini_portile2 (~> 2.4.0)
- oas_parser (0.22.4)
+ oas_parser (0.23.0)
activesupport (>= 4.0.0)
addressable (~> 2.3)
builder (~> 3.2.3)
@@ -83,7 +84,7 @@ GEM
thread_safe (0.3.6)
toml (0.2.0)
parslet (~> 1.8.0)
- tzinfo (1.2.5)
+ tzinfo (1.2.6)
thread_safe (~> 0.1)
webmock (3.7.5)
addressable (>= 2.3.6)
@@ -91,6 +92,7 @@ GEM
hashdiff (>= 0.4.0, < 2.0.0)
with_env (1.1.0)
xml-simple (1.1.5)
+ zeitwerk (2.2.2)
PLATFORMS
ruby
diff --git a/lib/3scale_toolbox/version.rb b/lib/3scale_toolbox/version.rb
index 879ef2ef..7d62a2b7 100644
--- a/lib/3scale_toolbox/version.rb
+++ b/lib/3scale_toolbox/version.rb
@@ -1,3 +1,3 @@
module ThreeScaleToolbox
- VERSION = '0.14.0'
+ VERSION = '0.15.0'
end
diff --git a/licenses.xml b/licenses.xml
index 476ca020..a91a3529 100644
--- a/licenses.xml
+++ b/licenses.xml
@@ -13,7 +13,7 @@
3scale_toolbox
- 0.14.0
+ 0.15.0
MIT
@@ -23,7 +23,7 @@
activesupport
- 6.0.1
+ 6.0.2.1
MIT
@@ -43,7 +43,7 @@
builder
- 3.2.3
+ 3.2.4
MIT
@@ -171,7 +171,7 @@
i18n
- 1.7.0
+ 1.8.2
MIT
@@ -221,7 +221,7 @@
minitest
- 5.13.0
+ 5.14.0
MIT
@@ -251,7 +251,7 @@
nokogiri
- 1.10.5
+ 1.10.7
MIT
@@ -261,7 +261,7 @@
oas_parser
- 0.22.4
+ 0.23.0
MIT
@@ -411,7 +411,7 @@
tzinfo
- 1.2.5
+ 1.2.6
MIT
@@ -451,7 +451,7 @@
zeitwerk
- 2.2.1
+ 2.2.2
MIT