Skip to content

Commit 497f6d2

Browse files
Updated dependency gem to latest vesrsion (#30)
* Updated dependency gem to latest vesrsion Upgraded activesupport gem to latest version. Rails 7 requires activesupport V7.0 and greater. * Changed the activesupport version * Updated License year * Updated contentstack_utils gem version * Updated Gemfile.lock * Updated Ruby SDK version * Added SDK version info in Changelog file * Updated changelog file
1 parent 61e7c3c commit 497f6d2

File tree

5 files changed

+49
-16
lines changed

5 files changed

+49
-16
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,34 @@
11
## CHANGELOG
2+
3+
## Version 0.6.2
4+
### Date: 27th-Feb-2023
5+
### Package Update
6+
- Dependency gem update.
7+
8+
------------------------------------------------
9+
## Version 0.6.1
10+
### Date: 9th-Sept-2022
11+
### Bug
12+
- Live Preview feature for entry with reference update.
13+
14+
------------------------------------------------
15+
## Version 0.6.0
16+
### Date: 17th-Aug-2022
17+
### New Features
18+
- Proxy and Retry functionality support added.
19+
20+
------------------------------------------------
21+
## Version 0.5.1
22+
### Date: 21st-Apr-2022
23+
### Package Update
24+
- API request with URI.OPEN issue resolved.
25+
26+
------------------------------------------------
27+
## Version 0.5.0
28+
### Date: 8th-Dec-2021
29+
### New Feature
30+
- Live Preview feature support added.
31+
232
------------------------------------------------
333
## Version 0.4.3
434
### Date: 17th-Sept-2021

Gemfile.lock

+15-12
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@ PATH
22
remote: .
33
specs:
44
contentstack (0.6.1)
5-
activesupport (>= 3.2, < 6.2)
6-
contentstack_utils (~> 1.0, >= 1.0.1)
5+
activesupport (>= 3.2, < 7.0.4)
6+
contentstack_utils (~> 1.0, >= 1.1.1)
77

88
GEM
99
remote: https://rubygems.org/
1010
specs:
11-
activesupport (6.1.7)
11+
activesupport (6.1.7.2)
1212
concurrent-ruby (~> 1.0, >= 1.0.2)
1313
i18n (>= 1.6, < 2)
1414
minitest (>= 5.1)
1515
tzinfo (~> 2.0)
1616
zeitwerk (~> 2.3)
1717
addressable (2.8.1)
1818
public_suffix (>= 2.0.2, < 6.0)
19-
concurrent-ruby (1.1.10)
19+
concurrent-ruby (1.2.0)
2020
contentstack_utils (1.1.1)
2121
activesupport (>= 3.2, < 6.2)
2222
nokogiri (~> 1.11, >= 1.11.0)
@@ -27,13 +27,15 @@ GEM
2727
hashdiff (1.0.1)
2828
i18n (1.12.0)
2929
concurrent-ruby (~> 1.0)
30-
mini_portile2 (2.8.0)
31-
minitest (5.16.3)
32-
nokogiri (1.13.9)
30+
mini_portile2 (2.8.1)
31+
minitest (5.17.0)
32+
nokogiri (1.13.10)
3333
mini_portile2 (~> 2.8.0)
3434
racc (~> 1.4)
35-
public_suffix (5.0.0)
36-
racc (1.6.0)
35+
nokogiri (1.13.10-x64-mingw32)
36+
racc (~> 1.4)
37+
public_suffix (5.0.1)
38+
racc (1.6.2)
3739
rexml (3.2.5)
3840
rspec (3.10.0)
3941
rspec-core (~> 3.10.0)
@@ -54,7 +56,7 @@ GEM
5456
simplecov_json_formatter (~> 0.1)
5557
simplecov-html (0.12.3)
5658
simplecov_json_formatter (0.1.4)
57-
tzinfo (2.0.5)
59+
tzinfo (2.0.6)
5860
concurrent-ruby (~> 1.0)
5961
webmock (3.11.3)
6062
addressable (>= 2.3.6)
@@ -63,10 +65,11 @@ GEM
6365
webrick (1.7.0)
6466
yard (0.9.28)
6567
webrick (~> 1.7.0)
66-
zeitwerk (2.6.6)
68+
zeitwerk (2.6.7)
6769

6870
PLATFORMS
6971
ruby
72+
x64-mingw32
7073

7174
DEPENDENCIES
7275
contentstack!
@@ -76,4 +79,4 @@ DEPENDENCIES
7679
yard (~> 0.9.26)
7780

7881
BUNDLED WITH
79-
2.1.4
82+
2.3.13

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2012-2022 Contentstack. All Rights Reserved
3+
Copyright (c) 2012-2023 Contentstack. All Rights Reserved
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

contentstack.gemspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Gem::Specification.new do |s|
2020
s.files = `git ls-files`.split("\n")
2121
s.require_paths = ["lib"]
2222

23-
s.add_dependency 'activesupport', '>= 3.2', '< 6.2'
24-
s.add_dependency "contentstack_utils", '~> 1.0', '>= 1.0.1'
23+
s.add_dependency 'activesupport', '>= 3.2', '< 7.0.4'
24+
s.add_dependency "contentstack_utils", '~> 1.0', '>= 1.1.1'
2525

2626
s.add_development_dependency 'rspec', '~> 3.10.0'
2727
s.add_development_dependency 'webmock', '~> 3.11.0'

lib/contentstack/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Contentstack
2-
VERSION = "0.6.1"
2+
VERSION = "0.6.2"
33
end

0 commit comments

Comments
 (0)