cocoapods 1.16.2 → 1.17.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d43891dba5d58dbff98cd59cfbd5f0d1284769f8e5baca0fff0c2b7c64151d81
4
- data.tar.gz: c510fb10ec4fa60e82c84893498f36055d9e29cb29af5b6b7b32b8c171663462
3
+ metadata.gz: 6bbc66622dd92f01036674d60968b7c675483c34656fef18286282c7a172212a
4
+ data.tar.gz: 70749169c6523f1ea37b9ac8cdeb28c0c8c1376d3cf19b3f08fceaf76a409016
5
5
  SHA512:
6
- metadata.gz: d619308cbcd85315c71e59674ed3221e8d34bc3f9934bfc6fb90d7e84baad9bcd550a28d434fd573b79d40658e56740e5ee5f8be5e2a208061a7618a8867ea28
7
- data.tar.gz: 6bdbbaa9c1bfa2073f131171064bf259155234c2bccce36ceecda7d2b2aeedfd194ad8ea76085a2caa0bd9c90ff86256493988e49ee3ebd0099ea04e8ac0ac35
6
+ metadata.gz: 7e055c359efcbe3a2e20e8347cbdc31b2bd74363575418f404629ecc878ddf25a8dbbd57398dd0276e75f152eb633e4cc7ffa0efb3606fdfcc79ea0cb28f7c7a
7
+ data.tar.gz: c445a84cc068dd3e9ead0ad641fb9a5d2df66106c7493687b321056d8221a65a9726e1ee8341970dbb7d203a32920f0695bfe4870f7325d1d0b2bf3db0a08789
data/CHANGELOG.md CHANGED
@@ -4,6 +4,33 @@ To install or update CocoaPods see this [guide](https://guides.cocoapods.org/usi
4
4
 
5
5
  To install release candidates run `[sudo] gem install cocoapods --pre`
6
6
 
7
+ ## 1.17.0 (2026-07-06)
8
+
9
+ ##### Enhancements
10
+
11
+ * Added `--no-lint` option for `pod repo push` command to allow skipping Lint phase when publishing a Pod.
12
+ [Guillermo Mazzola](https://github.com/gmazzo)
13
+ [#12706](https://github.com/CocoaPods/CocoaPods/pull/12706)
14
+
15
+ * Bump minimum Xcodeproj to 1.28.0.
16
+ [Eric Amorde](https://github.com/amorde)
17
+ [#12913](https://github.com/CocoaPods/CocoaPods/pull/12913)
18
+
19
+ * Remove unused escape dependency.
20
+ [Samuel Giddins](https://github.com/segiddins), [Eric Amorde](https://github.com/amorde)
21
+ [#12914](https://github.com/CocoaPods/CocoaPods/pull/12914)
22
+
23
+ ##### Bug Fixes
24
+
25
+ * Update ruby-macho to 4.1.0 to address new mergable libraries not beind detected correctly.
26
+ [Parsa Nasirimehr](https://github.com/TheRogue76)
27
+ [#12691](https://github.com/CocoaPods/CocoaPods/pull/12691)
28
+
29
+ * Fix a crash when run with certain versions of active_support.
30
+ [Eric Amorde](https://github.com/amorde)
31
+ [#12915](https://github.com/CocoaPods/CocoaPods/pull/12915)
32
+
33
+
7
34
  ## 1.16.2 (2024-10-31)
8
35
 
9
36
  ##### Enhancements
@@ -42,7 +69,7 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
42
69
  * Bump minimum `xcodeproj` to `1.26.0`
43
70
  * Update project generator to set `GENERATE_INFOPLIST_FILE = NO` on pod targets
44
71
  * Update project generator to set `ENABLE_USER_SCRIPT_SANDBOXING = NO` = NO` on pod targets to fix build failures with vendored frameworks.
45
- * Update project geneerator to set `SWIFT_INSTALL_OBJC_HEADER = YES` on pod targets to enable consuming Swift pods from Objective-C.
72
+ * Update project generator to set `SWIFT_INSTALL_OBJC_HEADER = YES` on pod targets to enable consuming Swift pods from Objective-C.
46
73
 
47
74
  [Eric Amorde](https://github.com/amorde)
48
75
  [#12656](https://github.com/CocoaPods/CocoaPods/pull/12656)
data/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ # ⚠️ CocoaPods is in maintenance mode
2
+
3
+ Cocoapods is not receiving active development. Refer to [the blog](https://blog.cocoapods.org/) for the latest status of the project.
4
+
5
+ ---
6
+
1
7
  ![CocoaPods Logo](https://raw.github.com/CocoaPods/shared_resources/master/assets/cocoapods-banner-readme.png)
2
8
 
3
9
  ### CocoaPods: The Cocoa dependency manager
@@ -28,6 +28,7 @@ module Pod
28
28
  ["--sources=#{Pod::TrunkSource::TRUNK_REPO_URL}", 'The sources from which to pull dependent pods ' \
29
29
  '(defaults to all available repos). Multiple sources must be comma-delimited'],
30
30
  ['--local-only', 'Does not perform the step of pushing REPO to its remote'],
31
+ ['--no-lint', 'Does not perform the Lint step'],
31
32
  ['--no-private', 'Lint includes checks that apply only to public repos'],
32
33
  ['--skip-import-validation', 'Lint skips validating that the pod can be imported'],
33
34
  ['--skip-tests', 'Lint skips building and running tests during validation'],
@@ -52,6 +53,7 @@ module Pod
52
53
  @podspec = argv.shift_argument
53
54
  @use_frameworks = !argv.flag?('use-libraries')
54
55
  @use_modular_headers = argv.flag?('use-modular-headers', false)
56
+ @lint = argv.flag?('lint', true)
55
57
  @private = argv.flag?('private', true)
56
58
  @message = argv.option('commit-message')
57
59
  @commit_message = argv.flag?('commit-message', false)
@@ -78,7 +80,7 @@ module Pod
78
80
  open_editor if @commit_message && @message.nil?
79
81
  check_if_push_allowed
80
82
  update_sources if @update_sources
81
- validate_podspec_files
83
+ validate_podspec_files if @lint
82
84
  check_repo_status
83
85
  update_repo
84
86
  add_specs_to_repo
@@ -1,5 +1,5 @@
1
1
  module Pod
2
2
  # The version of the CocoaPods command line tool.
3
3
  #
4
- VERSION = '1.16.2'.freeze unless defined? Pod::VERSION
4
+ VERSION = '1.17.0'.freeze unless defined? Pod::VERSION
5
5
  end
data/lib/cocoapods.rb CHANGED
@@ -4,6 +4,8 @@ require 'xcodeproj'
4
4
  # It is very likely that we'll need these and as some of those paths will atm
5
5
  # result in a I18n deprecation warning, we load those here now so that we can
6
6
  # get rid of that warning.
7
+ require 'mutex_m' # fix a crash when requiring certain active_support versions
8
+ require 'logger' # fix a crash when requiring certain active_support versions
7
9
  require 'active_support'
8
10
  require 'active_support/core_ext'
9
11
  require 'active_support/core_ext/string/strip'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.2
4
+ version: 1.17.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eloy Duran
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-10-31 00:00:00.000000000 Z
14
+ date: 2026-07-06 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: cocoapods-core
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 1.16.2
22
+ version: 1.17.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 1.16.2
29
+ version: 1.17.0
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: claide
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -187,7 +187,7 @@ dependencies:
187
187
  requirements:
188
188
  - - ">="
189
189
  - !ruby/object:Gem::Version
190
- version: 1.27.0
190
+ version: 1.28.1
191
191
  - - "<"
192
192
  - !ruby/object:Gem::Version
193
193
  version: '2.0'
@@ -197,7 +197,7 @@ dependencies:
197
197
  requirements:
198
198
  - - ">="
199
199
  - !ruby/object:Gem::Version
200
- version: 1.27.0
200
+ version: 1.28.1
201
201
  - - "<"
202
202
  - !ruby/object:Gem::Version
203
203
  version: '2.0'
@@ -215,20 +215,6 @@ dependencies:
215
215
  - - "~>"
216
216
  - !ruby/object:Gem::Version
217
217
  version: '3.1'
218
- - !ruby/object:Gem::Dependency
219
- name: escape
220
- requirement: !ruby/object:Gem::Requirement
221
- requirements:
222
- - - "~>"
223
- - !ruby/object:Gem::Version
224
- version: 0.0.4
225
- type: :runtime
226
- prerelease: false
227
- version_requirements: !ruby/object:Gem::Requirement
228
- requirements:
229
- - - "~>"
230
- - !ruby/object:Gem::Version
231
- version: 0.0.4
232
218
  - !ruby/object:Gem::Dependency
233
219
  name: fourflusher
234
220
  requirement: !ruby/object:Gem::Requirement
@@ -281,22 +267,16 @@ dependencies:
281
267
  name: ruby-macho
282
268
  requirement: !ruby/object:Gem::Requirement
283
269
  requirements:
284
- - - ">="
285
- - !ruby/object:Gem::Version
286
- version: 2.3.0
287
- - - "<"
270
+ - - "~>"
288
271
  - !ruby/object:Gem::Version
289
- version: '3.0'
272
+ version: 4.1.0
290
273
  type: :runtime
291
274
  prerelease: false
292
275
  version_requirements: !ruby/object:Gem::Requirement
293
276
  requirements:
294
- - - ">="
295
- - !ruby/object:Gem::Version
296
- version: 2.3.0
297
- - - "<"
277
+ - - "~>"
298
278
  - !ruby/object:Gem::Version
299
- version: '3.0'
279
+ version: 4.1.0
300
280
  - !ruby/object:Gem::Dependency
301
281
  name: addressable
302
282
  requirement: !ruby/object:Gem::Requirement
@@ -546,7 +526,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
546
526
  - !ruby/object:Gem::Version
547
527
  version: '0'
548
528
  requirements: []
549
- rubygems_version: 3.5.22
529
+ rubygems_version: 3.2.3
550
530
  signing_key:
551
531
  specification_version: 4
552
532
  summary: The Cocoa library package manager.