discourse_api 0.48.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +8 -9
- data/CHANGELOG.md +8 -4
- data/discourse_api.gemspec +2 -2
- data/lib/discourse_api/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 730d29945a35c74f70e468ae35c3079b68019bd3eed8ae578e30658c1dbc638a
|
|
4
|
+
data.tar.gz: '0728d384637cfd505efe9c86a895b9915e6638f6576f3907d06f34eac816fa53'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a32c491fd381e24e5c11c3e73fc1ecfabe014c31e4d14cdc5975869d73663eb35cd0711fa77cf74c65ecd91b3d657e28a413edcceb3d0f7230b0ece0ba7598a4
|
|
7
|
+
data.tar.gz: 78099bb35c97d711fbf9c574148230d5e79d0dd45b3f384aeb335a7354faaa89267c4f40673a08e7a07e1cadbbc051990f392742176fa436748ebcb676b0c1db
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -4,7 +4,6 @@ on:
|
|
|
4
4
|
pull_request:
|
|
5
5
|
push:
|
|
6
6
|
branches:
|
|
7
|
-
- master
|
|
8
7
|
- main
|
|
9
8
|
|
|
10
9
|
jobs:
|
|
@@ -14,13 +13,13 @@ jobs:
|
|
|
14
13
|
strategy:
|
|
15
14
|
matrix:
|
|
16
15
|
ruby:
|
|
17
|
-
- 2.
|
|
18
|
-
- 2.
|
|
19
|
-
-
|
|
20
|
-
- 3.
|
|
16
|
+
- '2.6'
|
|
17
|
+
- '2.7'
|
|
18
|
+
- '3.0'
|
|
19
|
+
- '3.1'
|
|
21
20
|
|
|
22
21
|
steps:
|
|
23
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v3
|
|
24
23
|
|
|
25
24
|
- name: Setup ruby
|
|
26
25
|
uses: ruby/setup-ruby@v1
|
|
@@ -35,15 +34,15 @@ jobs:
|
|
|
35
34
|
run: bundle exec rake test
|
|
36
35
|
|
|
37
36
|
publish:
|
|
38
|
-
if: github.event_name == 'push' &&
|
|
37
|
+
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
39
38
|
needs: build
|
|
40
39
|
runs-on: ubuntu-latest
|
|
41
40
|
|
|
42
41
|
steps:
|
|
43
|
-
- uses: actions/checkout@
|
|
42
|
+
- uses: actions/checkout@v3
|
|
44
43
|
|
|
45
44
|
- name: Release Gem
|
|
46
|
-
uses: discourse/publish-rubygems-action@v2
|
|
45
|
+
uses: discourse/publish-rubygems-action@v2
|
|
47
46
|
env:
|
|
48
47
|
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }}
|
|
49
48
|
GIT_EMAIL: team@discourse.org
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.0] - 2022-05-01
|
|
10
|
+
### Changed
|
|
11
|
+
- The package now requires ruby 2.6+
|
|
12
|
+
|
|
9
13
|
## [0.48.1] - 2022-04-13
|
|
10
14
|
### Added
|
|
11
15
|
- New attributes for Discourse Connect (aka SSO)
|
|
@@ -65,7 +69,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
65
69
|
|
|
66
70
|
## [0.43.1] - 2020-11-04
|
|
67
71
|
### Fixed
|
|
68
|
-
- Tagged version 0.43.0 got pushed without
|
|
72
|
+
- Tagged version 0.43.0 got pushed without commit due to new master branch
|
|
69
73
|
protections in github. No, code changes here just making sure tags align with
|
|
70
74
|
commits.
|
|
71
75
|
|
|
@@ -118,7 +122,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
118
122
|
## [0.38.0] - 2019-10-18
|
|
119
123
|
### Added
|
|
120
124
|
- Allow setting locale in SingleSignOn
|
|
121
|
-
- Optional param to group
|
|
125
|
+
- Optional param to group members to include owners as well as members
|
|
122
126
|
|
|
123
127
|
## [0.37.0] - 2019-09-23
|
|
124
128
|
### Added
|
|
@@ -131,7 +135,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
131
135
|
- Added poll methods
|
|
132
136
|
### Fixed
|
|
133
137
|
- Updated create topic example
|
|
134
|
-
- Fixed
|
|
138
|
+
- Fixed capitalization for header auth keys
|
|
135
139
|
|
|
136
140
|
## [0.35.0] - 2019-05-15
|
|
137
141
|
### Added
|
|
@@ -293,7 +297,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
293
297
|
- group_members: Allows you to retrieve more than 100 users with pagination (offset &
|
|
294
298
|
limit)
|
|
295
299
|
### Fixed
|
|
296
|
-
-
|
|
300
|
+
- Deprecation warning with SimpleCov
|
|
297
301
|
- updated rack dependency and added ruby 2.3 to travis config
|
|
298
302
|
|
|
299
303
|
## [0.9.1] - 2016-03-23
|
data/discourse_api.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.add_development_dependency 'rspec', '~> 3.4'
|
|
31
31
|
spec.add_development_dependency 'simplecov', '~> 0.11'
|
|
32
32
|
spec.add_development_dependency 'webmock', '~> 3.0'
|
|
33
|
-
spec.add_development_dependency 'rubocop-discourse', '~> 2.
|
|
33
|
+
spec.add_development_dependency 'rubocop-discourse', '~> 2.5.0'
|
|
34
34
|
|
|
35
|
-
spec.required_ruby_version = '>= 2.
|
|
35
|
+
spec.required_ruby_version = '>= 2.6.0'
|
|
36
36
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: discourse_api
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sam Saffron
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2022-
|
|
14
|
+
date: 2022-05-02 00:00:00.000000000 Z
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
17
17
|
name: faraday
|
|
@@ -173,14 +173,14 @@ dependencies:
|
|
|
173
173
|
requirements:
|
|
174
174
|
- - "~>"
|
|
175
175
|
- !ruby/object:Gem::Version
|
|
176
|
-
version: 2.
|
|
176
|
+
version: 2.5.0
|
|
177
177
|
type: :development
|
|
178
178
|
prerelease: false
|
|
179
179
|
version_requirements: !ruby/object:Gem::Requirement
|
|
180
180
|
requirements:
|
|
181
181
|
- - "~>"
|
|
182
182
|
- !ruby/object:Gem::Version
|
|
183
|
-
version: 2.
|
|
183
|
+
version: 2.5.0
|
|
184
184
|
description: Discourse API
|
|
185
185
|
email:
|
|
186
186
|
- sam.saffron@gmail.com
|
|
@@ -340,7 +340,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
340
340
|
requirements:
|
|
341
341
|
- - ">="
|
|
342
342
|
- !ruby/object:Gem::Version
|
|
343
|
-
version: 2.
|
|
343
|
+
version: 2.6.0
|
|
344
344
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
345
345
|
requirements:
|
|
346
346
|
- - ">="
|