ms-graph-mailer 0.1.0 → 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/CHANGELOG.md +22 -5
- data/lib/ms/graph/mailer/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42a5f17bc2451562927b00da39c699228579048d89cf34966b399d78c4b3b24b
|
|
4
|
+
data.tar.gz: 3d5bb273afdd1861a226a42944586dfac77c4ea2591879fa0fdf24edb11f2b51
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c9e4732a3646a088d83974f85f48403be2ea34c5c48d0d14626ac6b6e371dd860e91577692940c40cba0ed70641556c224f0acce11c92b761d0b721a76afa902
|
|
7
|
+
data.tar.gz: 3135ace13bea41f6f31dae45dbbc8bfcec1870be5b47ff62995c81fe8340427d55ce10c5610f302d5d1b5c978d3f5fb85d3ee906756e76b5eb6bebf0252c158f
|
data/CHANGELOG.md
CHANGED
|
@@ -5,13 +5,32 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.0] - 2025-12-15
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Automated CI/CD workflow with GitHub Actions
|
|
13
|
+
- Continuous Integration testing across Ruby 2.7, 3.0, 3.1, 3.2
|
|
14
|
+
- Automated releases using Trusted Publishing (no API keys needed)
|
|
15
|
+
- Version bump script (`scripts/bump_version.rb`)
|
|
16
|
+
- Comprehensive deployment documentation
|
|
17
|
+
- Rake tasks for version bumping (`rake version:major/minor/patch`)
|
|
18
|
+
|
|
19
|
+
### Changed
|
|
20
|
+
|
|
21
|
+
- **BREAKING**: Renamed gem from `microsoft-graph-mailer` to `ms-graph-mailer`
|
|
22
|
+
- **BREAKING**: Changed module namespace from `MicrosoftGraphMailer` to `MsGraphMailer`
|
|
23
|
+
- **BREAKING**: Changed require path from `microsoft/graph/mailer` to `ms/graph/mailer`
|
|
24
|
+
- Improved RuboCop configuration
|
|
25
|
+
- Enhanced CHANGELOG format with proper version links
|
|
26
|
+
|
|
8
27
|
## [0.1.0] - 2025-12-15
|
|
9
28
|
|
|
10
29
|
### Added
|
|
11
30
|
|
|
12
31
|
- Initial release of ms-graph-mailer gem
|
|
13
32
|
- ActionMailer delivery method for Microsoft Graph API
|
|
14
|
-
- OAuth 2.0 client credentials flow authentication
|
|
33
|
+
- OAuth 2.0 client credentials flow authentication with token caching
|
|
15
34
|
- Support for HTML and plain text emails
|
|
16
35
|
- Support for attachments (file attachments)
|
|
17
36
|
- Support for CC, BCC, and Reply-To recipients
|
|
@@ -19,12 +38,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
19
38
|
- Configurable SSL verification
|
|
20
39
|
- Logging support
|
|
21
40
|
- Complete documentation and examples
|
|
22
|
-
|
|
23
|
-
### Features
|
|
24
|
-
|
|
25
41
|
- `MsGraphMailer::DeliveryMethod` - Main delivery method class
|
|
26
|
-
- `MsGraphMailer::TokenService` - OAuth token management
|
|
42
|
+
- `MsGraphMailer::TokenService` - OAuth token management with Rails.cache
|
|
27
43
|
- Configuration system for tenant, client credentials
|
|
28
44
|
- Integration with Rails logger
|
|
29
45
|
|
|
46
|
+
[1.0.0]: https://github.com/zauberware/ms-graph-mailer/releases/tag/v1.0.0
|
|
30
47
|
[0.1.0]: https://github.com/zauberware/ms-graph-mailer/releases/tag/v0.1.0
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ms-graph-mailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Zauberware Technologies GmbH
|
|
@@ -66,6 +66,20 @@ dependencies:
|
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '2.0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: securerandom
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0.3'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0.3'
|
|
69
83
|
- !ruby/object:Gem::Dependency
|
|
70
84
|
name: bundler
|
|
71
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -194,14 +208,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
194
208
|
requirements:
|
|
195
209
|
- - ">="
|
|
196
210
|
- !ruby/object:Gem::Version
|
|
197
|
-
version: 2.
|
|
211
|
+
version: 3.2.0
|
|
198
212
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
199
213
|
requirements:
|
|
200
214
|
- - ">="
|
|
201
215
|
- !ruby/object:Gem::Version
|
|
202
216
|
version: '0'
|
|
203
217
|
requirements: []
|
|
204
|
-
rubygems_version: 3.5.
|
|
218
|
+
rubygems_version: 3.5.22
|
|
205
219
|
signing_key:
|
|
206
220
|
specification_version: 4
|
|
207
221
|
summary: ActionMailer delivery method for Microsoft Graph API
|