td 0.18.0 → 0.18.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b1dbc916f042b6416a0e1938f7d1b352d2bad5f3cb44be4d3f9e9d576f51f96b
4
- data.tar.gz: faa0d9b3281e368d0999714aa7e58a9f517da3071dab4d5c357fb0e8f3a97ad5
3
+ metadata.gz: fc099bb4729fbe746724ea1732b280475c4950b7008cef8c8b9062aa68c865c9
4
+ data.tar.gz: b5468e7e574363fbca9e0557c08bc2189c68ce5ed3334ef4ac4db1935e5af3b8
5
5
  SHA512:
6
- metadata.gz: 61584b44bf0e10309f3117af78b547158340735515745f06d4647cbf9c67aac513c2e26bcfc3f5f86dbb0c878257852f80bbc014e2fc2d1eeb4baca4f7c41c77
7
- data.tar.gz: 527a8c17ca6e253dc0d5e3ead71a7aab077af320aa6d940af4ec0b89ed29ecec7222c59c66abd4ba0629dbb4301658d274ca115b070641662c4db4167424f539
6
+ metadata.gz: 4efacd0282102014222592635e9c81bffec71510d811255897c9662d4d22be47905306c4ba2160eb9a27063e0718cd296f3c00f4a730196a5a47e10a1d146c7a
7
+ data.tar.gz: 5b5e5a6adb757ebbd91fc69f7e66aef81d9994e17b1a1ed8732351636135aa5af6b24f92a78d62a75b5109def57e1d51789c8007799b9384fef7ad94eb154065
data/ChangeLog CHANGED
@@ -1,3 +1,7 @@
1
+ == 2025-07-18 version 0.18.1
2
+
3
+ * Use https://toolbelt.treasuredata.com/ for TD Toolbelt's download URL #270
4
+
1
5
  == 2025-04-29 version 0.18.0
2
6
 
3
7
  * Update password symbol for user creation #262
data/bin/td CHANGED
@@ -9,7 +9,7 @@ require 'td/updater'
9
9
  TreasureData::Updater.disable(<<EOS
10
10
 
11
11
  `td update` is only available from the Treasure Data Toolbelt.
12
- You can download and install it from http://toolbelt.treasure-data.com.
12
+ You can download and install it from http://toolbelt.treasuredata.com.
13
13
 
14
14
  It appers you are running the `td` gem. To update the gem to the latest
15
15
  version, please run `gem update td`.
@@ -140,7 +140,7 @@ module TreasureData
140
140
  end
141
141
 
142
142
  def digdag_base_url(version=nil)
143
- base = 'https://toolbelt.treasure-data.com/digdag'
143
+ base = 'https://toolbelt.treasuredata.com/digdag'
144
144
  if version.to_s == ''
145
145
  base
146
146
  else
data/lib/td/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module TreasureData
2
- TOOLBELT_VERSION = '0.18.0'
2
+ TOOLBELT_VERSION = '0.18.1'
3
3
  end
@@ -161,7 +161,7 @@ EOF
161
161
  expect(TreasureData::Updater).to_not have_received(:stream_fetch).with(
162
162
  %r{/java/}, instance_of(File))
163
163
  expect(TreasureData::Updater).to have_received(:stream_fetch).with(
164
- 'https://toolbelt.treasure-data.com/digdag?user=test%40example.com', instance_of(File))
164
+ 'https://toolbelt.treasuredata.com/digdag?user=test%40example.com', instance_of(File))
165
165
  end
166
166
 
167
167
  it 'installs java + digdag and can run a workflow' do
@@ -180,7 +180,7 @@ EOF
180
180
  expect(stdout_io.string).to include 'Downloading workflow module'
181
181
  expect(File).to exist(File.join(ENV[home_env], '.td', 'digdag', 'digdag'))
182
182
  expect(TreasureData::Updater).to have_received(:stream_fetch).with(
183
- 'https://toolbelt.treasure-data.com/digdag?user=test%40example.com', instance_of(File))
183
+ 'https://toolbelt.treasuredata.com/digdag?user=test%40example.com', instance_of(File))
184
184
 
185
185
  # Check that java and digdag is not re-installed
186
186
  stdout_io.truncate(0)
@@ -228,7 +228,7 @@ EOF
228
228
  expect(TreasureData::Updater).to_not have_received(:stream_fetch).with(
229
229
  %r{/java/}, instance_of(File))
230
230
  expect(TreasureData::Updater).to have_received(:stream_fetch).with(
231
- 'https://toolbelt.treasure-data.com/digdag?user=test%40example.com', instance_of(File))
231
+ 'https://toolbelt.treasuredata.com/digdag?user=test%40example.com', instance_of(File))
232
232
 
233
233
  # Check that digdag is not re-installed
234
234
  stdout_io.truncate(0)
@@ -250,7 +250,7 @@ EOF
250
250
  expect(stdout_io.string).to include 'Downloading workflow module'
251
251
  expect(File).to exist(File.join(ENV[home_env], '.td', 'digdag', 'digdag'))
252
252
  expect(TreasureData::Updater).to have_received(:stream_fetch).with(
253
- 'https://toolbelt.treasure-data.com/digdag', instance_of(File))
253
+ 'https://toolbelt.treasuredata.com/digdag', instance_of(File))
254
254
  }
255
255
  end
256
256
 
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: td
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.18.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Treasure Data, Inc.
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-04-29 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: msgpack
@@ -335,7 +334,6 @@ homepage: http://treasure-data.com/
335
334
  licenses:
336
335
  - Apache-2.0
337
336
  metadata: {}
338
- post_install_message:
339
337
  rdoc_options: []
340
338
  require_paths:
341
339
  - lib
@@ -350,8 +348,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
350
348
  - !ruby/object:Gem::Version
351
349
  version: '0'
352
350
  requirements: []
353
- rubygems_version: 3.3.26
354
- signing_key:
351
+ rubygems_version: 3.6.7
355
352
  specification_version: 4
356
353
  summary: CLI to manage data on Treasure Data, the Hadoop-based cloud data warehousing
357
354
  test_files: