Skip to content

Commit 4abb282

Browse files
committed
v3.6.0
1 parent 721d49a commit 4abb282

File tree

4 files changed

+46
-27
lines changed

4 files changed

+46
-27
lines changed

.editorconfig

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
9+
[*.go]
10+
indent_style = tab

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto eol=lf

CHANGELOG.md

+34-26
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,20 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [Unreleased]
9+
10+
## [3.6.0] - 2024-01-16
11+
12+
### Added
13+
14+
- Vault encrypt structured support.
815

916
## [3.5.0] - 2023-12-18
1017

11-
# Added
18+
### Added
1219

1320
- File Intel /v2/reputation support
1421
- IP Intel /v2/reputation, /v2/domain, /v2/proxy, v2/vpn and /v2/geolocate support
@@ -19,22 +26,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1926

2027
## [3.4.0] - 2023-12-07
2128

22-
# Changed
29+
### Changed
2330

2431
- 202 result format
2532

26-
# Removed
33+
### Removed
2734

2835
- accepted_status in 202 result
2936

30-
# Added
37+
### Added
3138

3239
- put_url, post_url, post_form_data fields in 202 result
3340

3441

3542
## [3.3.0] - 2023-11-28
3643

37-
# Added
44+
### Added
3845

3946
- Authn unlock user support
4047
- Redact multiconfig support
@@ -43,103 +50,103 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4350

4451
## [3.2.0] - 2023-11-15
4552

46-
# Added
53+
### Added
4754

4855
- Support for audit /v2/log and /v2/log_async endpoints
4956

5057

5158
## [3.1.0] - 2023-11-09
5259

53-
# Added
60+
### Added
5461

5562
- Presigned URL upload support on FileScan service
5663
- Folder settings support in Vault service
5764

5865
## [3.0.0] - 2023-10-23
5966

60-
# Added
67+
### Added
6168

62-
- AuthN v2 support
69+
- AuthN v2 support
6370

64-
# Removed
71+
### Removed
6572

6673
- AuthN v1 support
6774

6875

6976
## [2.3.0] - 2023-09-26
7077

71-
# Added
78+
### Added
7279

7380
- FileScan Reversinglabs provider example
7481
- Domain WhoIs endpoint support
7582
- AuthN Filters support
7683

77-
# Changed
84+
### Changed
7885

7986
- Deprecated config_id in PangeaConfig. Now is set in service initialization.
8087

81-
# Fixed
88+
### Fixed
8289

8390
- HashType supported in File Intel
8491

8592
## [2.2.0] - 2023-09-05
8693

87-
# Added
94+
### Added
8895

89-
- Redact rulesets field support
96+
- Redact rulesets field support
9097
- FileScan service support
9198

9299

93100
## [2.1.0] - 2023-07-14
94101

95-
# Added
102+
### Added
96103

97104
- Vault /folder/create endpoint support
98105

99106

100107
## [2.0.0] - 2023-07-06
101108

102-
# Added
109+
### Added
103110

104111
- Logger support on each service
105112
- Service methods to fetch async request's results
106113

107-
# Changed
114+
### Changed
108115

109116
- Audit service now allow user to setup CustomEvent format
110117
- Audit.Log() now receive a IEvent interface instead of Event to log
111118
- Make service structs private to force using its interface
112119
- Rename Request/Result structs to user Request/Result postfix instead of Input/Output
113-
- Update multiple fields to not be pointers unnecesarily
120+
- Update multiple fields to not be pointers unnecessarily
114121
- Vault field RotationState is now a ItemVersionState
115122

116-
# Deleted
123+
### Removed
117124

118125
- All Intel deprecated methods
119126

120127

121128
## [1.10.0] - 2023-06-26
122129

123-
# Added
130+
### Added
124131
- Multiconfig support
125132
- Instructions to setup token and domain in examples
126133

127134

128135
## [1.9.1] - 2023-06-09
129-
# Added
136+
### Added
130137

131138
- Defang examples
132139
- Intel User breached password full example
133140
- Intel IP /domain, /vpn and /proxy examples
134141

135-
# Changed
142+
### Changed
136143

137144
- UserBreachedPasswordResult now has maps instead of just interface
138145

139146

140147
## [1.9.0] - 2023-05-25
141148

142-
# Added
149+
### Added
143150

144151
- New algorithm support in Vault Service
145152
- Algorithm field support in Audit Service
@@ -257,7 +264,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
257264
- Redact client
258265

259266

260-
[unreleased]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.5.0...main
267+
[unreleased]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.6.0...main
268+
[3.6.0]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.5.0...v3.6.0
261269
[3.5.0]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.4.0...v3.5.0
262270
[3.4.0]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.3.0...v3.4.0
263271
[3.3.0]: https://github.com/pangeacyber/pangea-go/compare/pangea-sdk/v3.2.0...v3.3.0

pangea-sdk/v3/pangea/pangea.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
)
2424

2525
const (
26-
version = "3.5.0"
26+
version = "3.6.0"
2727
pangeaUserAgent = "pangea-go/" + version
2828
)
2929

0 commit comments

Comments
 (0)