netsuite-soap 2025.2.3 → 2025.2.5
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/HISTORY.md +17 -0
- data/lib/netsuite/version.rb +1 -1
- data/netsuite.gemspec +31 -8
- metadata +23 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c90c8b2f29dea4718da03930d859914731b1dc2212c33597dc74a61626e37ac9
|
|
4
|
+
data.tar.gz: 34aa5a89a395258f2d556ec7cdba7a6c316dad88546ca82f07f2d42aab357b14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 914c256cde54c0660e636aa6ca760d9368cd2f604fe0aaaa5d1c7e6ee6a2b2ca286732f36e6e2572f87c2a8730fb8f0c0a58fb9bab3d9343607e733a36727e27
|
|
7
|
+
data.tar.gz: 208fa938f90515dac2d2e8168807d22f5180533397e1f4a45350ec0884026ca874b23e0e29bf55ca3b22ef3480a3b61ac06d60a1f89a3a2cd3beb7a2bc64f976
|
data/HISTORY.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
## Unreleased
|
|
2
2
|
|
|
3
|
+
## v2025.2.5
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
* `gem.files` no longer requires git; falls back to `Dir.glob` in source archive environments
|
|
7
|
+
* Dropped deprecated `gem.test_files`
|
|
8
|
+
* Savon dependency upper-bounded to `< 3` (3.x is a breaking rewrite); added inline comments explaining `!= 2.13.0`
|
|
9
|
+
* Added `homepage_uri` gemspec metadata for RubyGems.org sidebar
|
|
10
|
+
* Softened deprecation language in description and post-install message to "scheduled for removal" with Oracle source link
|
|
11
|
+
* `gem.required_ruby_version` annotated with rationale (`~> 3.4` intentional)
|
|
12
|
+
|
|
13
|
+
## v2025.2.4
|
|
14
|
+
|
|
15
|
+
### Added
|
|
16
|
+
* Keywords for RubyGems.org search discoverability (`netsuite`, `soap`, `suitetalk`, `erp`, `oracle`, `async`)
|
|
17
|
+
* Post-install message surfacing the NetSuite SOAP deprecation timeline (2025.2 final endpoint, removed 2028.2)
|
|
18
|
+
* Gemspec metadata: `bug_tracker_uri`, `source_code_uri`, `documentation_uri` for RubyGems.org sidebar links
|
|
19
|
+
|
|
3
20
|
## v2025.2.3
|
|
4
21
|
|
|
5
22
|
### Added
|
data/lib/netsuite/version.rb
CHANGED
data/netsuite.gemspec
CHANGED
|
@@ -5,23 +5,46 @@ Gem::Specification.new do |gem|
|
|
|
5
5
|
gem.licenses = ['MIT']
|
|
6
6
|
gem.authors = ['Robert DeLanghe']
|
|
7
7
|
gem.email = ['dev@robertdelanghe.com']
|
|
8
|
-
gem.description = %q{Ruby wrapper for the NetSuite SuiteTalk SOAP Web Services API (v2025.2). Targets the final supported SOAP endpoint (
|
|
8
|
+
gem.description = %q{Ruby wrapper for the NetSuite SuiteTalk SOAP Web Services API (v2025.2). Targets the final supported SOAP endpoint (scheduled for removal in 2028.2 per Oracle's deprecation timeline). Includes async bulk operations (asyncAddList, asyncUpdateList, asyncUpsertList, asyncDeleteList, asyncGetList).}
|
|
9
9
|
gem.summary = %q{NetSuite SuiteTalk SOAP v2025.2 wrapper with async list operations}
|
|
10
10
|
gem.homepage = 'https://github.com/bdelanghe/netsuite'
|
|
11
11
|
|
|
12
|
-
gem.
|
|
13
|
-
|
|
14
|
-
|
|
12
|
+
gem.post_install_message = <<~MSG
|
|
13
|
+
Thank you for installing netsuite-soap.
|
|
14
|
+
|
|
15
|
+
NOTE: NetSuite is deprecating SOAP Web Services.
|
|
16
|
+
- 2025.2 is the final supported SOAP endpoint.
|
|
17
|
+
- SOAP is scheduled for removal in NetSuite 2028.2.
|
|
18
|
+
|
|
19
|
+
New integrations should use SuiteTalk REST Web Services with OAuth 2.0.
|
|
20
|
+
https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/chapter_1540391670.html
|
|
21
|
+
MSG
|
|
22
|
+
|
|
23
|
+
# Use git ls-files when available (development); fall back to Dir.glob for
|
|
24
|
+
# builds from source archives or environments without git.
|
|
25
|
+
git_files = `git ls-files -z 2>/dev/null`.split("\x0")
|
|
26
|
+
gem.files = git_files.any? ? git_files : Dir.glob('{bin,lib}/**/*') + %w[README.md LICENSE HISTORY.md netsuite.gemspec]
|
|
27
|
+
gem.executables = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
|
|
28
|
+
|
|
15
29
|
gem.name = 'netsuite-soap'
|
|
16
30
|
gem.require_paths = ['lib']
|
|
17
31
|
gem.version = NetSuite::VERSION
|
|
32
|
+
|
|
33
|
+
# 3.4+ required: relies on `it` block parameter syntax and PRISM-based parse
|
|
34
|
+
# behaviour introduced in 3.4. Intentional; do not lower without testing.
|
|
18
35
|
gem.required_ruby_version = '~> 3.4'
|
|
19
|
-
|
|
20
|
-
gem.metadata['
|
|
36
|
+
|
|
37
|
+
gem.metadata['changelog_uri'] = 'https://github.com/bdelanghe/netsuite/blob/main/HISTORY.md'
|
|
38
|
+
gem.metadata['bug_tracker_uri'] = 'https://github.com/bdelanghe/netsuite/issues'
|
|
39
|
+
gem.metadata['source_code_uri'] = 'https://github.com/bdelanghe/netsuite'
|
|
40
|
+
gem.metadata['documentation_uri'] = 'https://github.com/bdelanghe/netsuite#readme'
|
|
41
|
+
gem.metadata['homepage_uri'] = 'https://github.com/bdelanghe/netsuite'
|
|
21
42
|
gem.metadata['rubygems_mfa_required'] = 'true'
|
|
22
|
-
gem.metadata['github_repo'] = 'https://github.com/bdelanghe/netsuite'
|
|
23
43
|
|
|
24
|
-
|
|
44
|
+
# != 2.13.0: that release had regressions in SOAP header/namespace handling.
|
|
45
|
+
# < 3: Savon 3.x is a rewrite with breaking API changes; pin to 2.x until
|
|
46
|
+
# we validate compatibility.
|
|
47
|
+
gem.add_dependency 'savon', '>= 2.3.0', '!= 2.13.0', '< 3'
|
|
25
48
|
gem.add_dependency 'rack', '< 4'
|
|
26
49
|
gem.add_dependency 'tzinfo', '~> 2.0'
|
|
27
50
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: netsuite-soap
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2025.2.
|
|
4
|
+
version: 2025.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Robert DeLanghe
|
|
@@ -19,6 +19,9 @@ dependencies:
|
|
|
19
19
|
- - "!="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
21
|
version: 2.13.0
|
|
22
|
+
- - "<"
|
|
23
|
+
- !ruby/object:Gem::Version
|
|
24
|
+
version: '3'
|
|
22
25
|
type: :runtime
|
|
23
26
|
prerelease: false
|
|
24
27
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,6 +32,9 @@ dependencies:
|
|
|
29
32
|
- - "!="
|
|
30
33
|
- !ruby/object:Gem::Version
|
|
31
34
|
version: 2.13.0
|
|
35
|
+
- - "<"
|
|
36
|
+
- !ruby/object:Gem::Version
|
|
37
|
+
version: '3'
|
|
32
38
|
- !ruby/object:Gem::Dependency
|
|
33
39
|
name: rack
|
|
34
40
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,8 +92,9 @@ dependencies:
|
|
|
86
92
|
- !ruby/object:Gem::Version
|
|
87
93
|
version: '3.19'
|
|
88
94
|
description: Ruby wrapper for the NetSuite SuiteTalk SOAP Web Services API (v2025.2).
|
|
89
|
-
Targets the final supported SOAP endpoint (
|
|
90
|
-
operations (asyncAddList, asyncUpdateList,
|
|
95
|
+
Targets the final supported SOAP endpoint (scheduled for removal in 2028.2 per Oracle's
|
|
96
|
+
deprecation timeline). Includes async bulk operations (asyncAddList, asyncUpdateList,
|
|
97
|
+
asyncUpsertList, asyncDeleteList, asyncGetList).
|
|
91
98
|
email:
|
|
92
99
|
- dev@robertdelanghe.com
|
|
93
100
|
executables: []
|
|
@@ -741,9 +748,20 @@ licenses:
|
|
|
741
748
|
- MIT
|
|
742
749
|
metadata:
|
|
743
750
|
changelog_uri: https://github.com/bdelanghe/netsuite/blob/main/HISTORY.md
|
|
744
|
-
|
|
751
|
+
bug_tracker_uri: https://github.com/bdelanghe/netsuite/issues
|
|
752
|
+
source_code_uri: https://github.com/bdelanghe/netsuite
|
|
753
|
+
documentation_uri: https://github.com/bdelanghe/netsuite#readme
|
|
754
|
+
homepage_uri: https://github.com/bdelanghe/netsuite
|
|
745
755
|
rubygems_mfa_required: 'true'
|
|
746
|
-
|
|
756
|
+
post_install_message: |
|
|
757
|
+
Thank you for installing netsuite-soap.
|
|
758
|
+
|
|
759
|
+
NOTE: NetSuite is deprecating SOAP Web Services.
|
|
760
|
+
- 2025.2 is the final supported SOAP endpoint.
|
|
761
|
+
- SOAP is scheduled for removal in NetSuite 2028.2.
|
|
762
|
+
|
|
763
|
+
New integrations should use SuiteTalk REST Web Services with OAuth 2.0.
|
|
764
|
+
https://docs.oracle.com/en/cloud/saas/netsuite/ns-online-help/chapter_1540391670.html
|
|
747
765
|
rdoc_options: []
|
|
748
766
|
require_paths:
|
|
749
767
|
- lib
|