Skip to content

Commit e6a916d

Browse files
authored
feat: kubo 0.33 with AutoTLS enabled (#2917)
Release-As: 0.41.0
1 parent 147b421 commit e6a916d

File tree

4 files changed

+76
-10
lines changed

4 files changed

+76
-10
lines changed

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"ipfs-utils": "^9.0.10",
8383
"ipfsd-ctl": "10.0.6",
8484
"it-last": "^1.0.6",
85-
"kubo": "0.32.1",
85+
"kubo": "0.33.0",
8686
"multiaddr": "10.0.1",
8787
"multiaddr-to-uri": "8.0.0",
8888
"portfinder": "^1.0.32",

src/daemon/config.js

+17-2
Original file line numberDiff line numberDiff line change
@@ -93,13 +93,16 @@ function applyDefaults (ipfsd) {
9393
config.API = { HTTPHeaders: {} }
9494

9595
config.Swarm = config.Swarm ?? {}
96-
config.Swarm.DisableNatPortMap = false
96+
config.Swarm.DisableNatPortMap = false // uPnP
9797
config.Swarm.ConnMgr = config.Swarm.ConnMgr ?? {}
9898

9999
config.Discovery = config.Discovery ?? {}
100100
config.Discovery.MDNS = config.Discovery.MDNS ?? {}
101101
config.Discovery.MDNS.Enabled = true
102102

103+
config.AutoTLS = config.AutoTLS ?? {}
104+
config.AutoTLS.Enabled = true
105+
103106
writeConfigFile(ipfsd, config)
104107
}
105108

@@ -150,7 +153,7 @@ const getGatewayPort = (config) => getHttpPort(config.Addresses.Gateway)
150153
*/
151154
function migrateConfig (ipfsd) {
152155
// Bump revision number when new migration rule is added
153-
const REVISION = 5
156+
const REVISION = 6
154157
const REVISION_KEY = 'daemonConfigRevision'
155158
const CURRENT_REVISION = store.get(REVISION_KEY, 0)
156159

@@ -231,6 +234,18 @@ function migrateConfig (ipfsd) {
231234
}
232235
}
233236

237+
if (CURRENT_REVISION < 6) {
238+
// Enable AutoTLS if there is no explicit user preference
239+
if (config.AutoTLS === undefined) {
240+
config.AutoTLS = {}
241+
changed = true
242+
}
243+
if (config.AutoTLS.Enabled === undefined) {
244+
config.AutoTLS.Enabled = true
245+
changed = true
246+
}
247+
}
248+
234249
if (changed) {
235250
try {
236251
writeConfigFile(ipfsd, config)

test/e2e/launch.e2e.test.js

+51
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,57 @@ test.describe.serial('Application launch', async () => {
220220
expect(config.Swarm.ConnMgr.HighWater).toEqual(undefined)
221221
})
222222

223+
test('applies config migration v6 (explicitly enable AutoTLS if upgrading from Kubo <0.33)', async () => {
224+
// create preexisting, initialized repo and config
225+
const { repoPath, configPath, peerId: expectedId } = await makeRepository({ start: false })
226+
227+
const initConfig = fs.readJsonSync(configPath)
228+
initConfig.AutoTLS = undefined // simulate kubo <0.33, where there was no AutoTLS section
229+
fs.writeJsonSync(configPath, initConfig, { spaces: 2 })
230+
231+
const { app } = await startApp({ repoPath })
232+
const { peerId } = await daemonReady(app)
233+
expect(peerId).toBe(expectedId)
234+
235+
const config = fs.readJsonSync(configPath)
236+
// ensure app has migrated config and AutoTLS is explicitly enabled now
237+
expect(config.AutoTLS.Enabled).toEqual(true)
238+
})
239+
240+
test('applies config migration v6 (explicitly enable AutoTLS if Kubo >=0.33)', async () => {
241+
// create preexisting, initialized repo and config
242+
const { repoPath, configPath, peerId: expectedId } = await makeRepository({ start: false })
243+
244+
// just read config (it should have empty AutoTLS config)
245+
const initConfig = fs.readJsonSync(configPath)
246+
fs.writeJsonSync(configPath, initConfig, { spaces: 2 })
247+
248+
const { app } = await startApp({ repoPath })
249+
const { peerId } = await daemonReady(app)
250+
expect(peerId).toBe(expectedId)
251+
252+
const config = fs.readJsonSync(configPath)
253+
// ensure ipfs-desktop migrated default Kubo config to explicitly enable AutoTLS
254+
expect(config.AutoTLS.Enabled).toEqual(true)
255+
})
256+
257+
test('applies config migration v6 (respect pre-existing AutoTLS user config)', async () => {
258+
// create preexisting, initialized repo and config
259+
const { repoPath, configPath, peerId: expectedId } = await makeRepository({ start: false })
260+
261+
const initConfig = fs.readJsonSync(configPath)
262+
initConfig.AutoTLS = { Enabled: false } // user explicitly disabled it
263+
fs.writeJsonSync(configPath, initConfig, { spaces: 2 })
264+
265+
const { app } = await startApp({ repoPath })
266+
const { peerId } = await daemonReady(app)
267+
expect(peerId).toBe(expectedId)
268+
269+
const config = fs.readJsonSync(configPath)
270+
// ensure app respected and kept user choice
271+
expect(config.AutoTLS.Enabled).toEqual(false)
272+
})
273+
223274
test('starts with repository with "IPFS_PATH/api" file and no daemon running', async () => {
224275
// create "remote" repo
225276
const { ipfsd } = await makeRepository({ start: true })

0 commit comments

Comments
 (0)