files.com 1.1.697 → 1.1.698

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: a893aaa8b607be5cdc71b0e9a2d2857cf0ba59b85ac6ae8f7772895169096d61
4
- data.tar.gz: 11c31bb97e760ed51071fb8ca96cd93e2fde8e56685ad23e630fe48254564cf4
3
+ metadata.gz: 4ee7b1d5e9d0cad6ed845df4aa8f01c42db61e7967fdcefd276df58c9b179d67
4
+ data.tar.gz: 766c88c4704816c33df01359aaad091a3ba422c99b7334c259dba0e38fdf4d65
5
5
  SHA512:
6
- metadata.gz: b955a095e6b440763b00bb6edb076058038ebaa10e257e6bed90a88c7eb0ae97687af338af9cfb7cf812a9dead1d84488149dd5f09b6ba5bbf44bf5e466ded95
7
- data.tar.gz: 22e68d3c932d53c294dc473ff6c736d9801bf3ff810e40d653e5e216ef5751a3988bffba9e2c24829ca1d9c5e8d71c441f3320c258464ea6c1551fa1afcd03e3
6
+ metadata.gz: 34a43dba6982100682930e77b8b22ce9b70365456f0f9a63427975388924b3c5cb07158e4ab612b70c1cfe0505c98cc9f85485368265588f988a3315830a5e43
7
+ data.tar.gz: 00cb5badcfe58edea2e9193b4a0191060610680e04a1490e68ba1e9f7209aabaa2578353d1c45413eab6e4dc513e1e574b1fd561dde9939270a11528a31aed30
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.697
1
+ 1.1.698
data/docs/site.md CHANGED
@@ -94,6 +94,7 @@
94
94
  "domain_hsts_header": true,
95
95
  "domain_letsencrypt_chain": "example",
96
96
  "email": "john.doe@files.com",
97
+ "fedramp": true,
97
98
  "ftp_enabled": true,
98
99
  "reply_to_email": "jane.doe@files.com",
99
100
  "non_sso_groups_allowed": true,
@@ -434,6 +435,7 @@
434
435
  * `domain_hsts_header` (boolean): Send HSTS (HTTP Strict Transport Security) header when visitors access the site via a custom domain?
435
436
  * `domain_letsencrypt_chain` (string): Letsencrypt chain to use when registering SSL Certificate for domain. No longer used as of 2026.
436
437
  * `email` (email): Main email for this site
438
+ * `fedramp` (boolean): Are FedRAMP security restrictions enabled for this site?
437
439
  * `ftp_enabled` (boolean): Is FTP enabled?
438
440
  * `reply_to_email` (email): Reply-to email for this site
439
441
  * `non_sso_groups_allowed` (boolean): If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
@@ -631,6 +633,7 @@ Files::Site.update(
631
633
  sftp_insecure_ciphers: false,
632
634
  sftp_insecure_diffie_hellman: false,
633
635
  disable_files_certificate_generation: false,
636
+ fedramp: false,
634
637
  user_lockout: false,
635
638
  user_lockout_tries: 1,
636
639
  user_lockout_within: 1,
@@ -812,6 +815,7 @@ Files::Site.update(
812
815
  * `sftp_insecure_ciphers` (boolean): If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severely weakens the security of your site and it is not recommend, except as a last resort for compatibility.
813
816
  * `sftp_insecure_diffie_hellman` (boolean): If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
814
817
  * `disable_files_certificate_generation` (boolean): If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
818
+ * `fedramp` (boolean): Are FedRAMP security restrictions enabled for this site?
815
819
  * `user_lockout` (boolean): Will users be locked out after incorrect login attempts?
816
820
  * `user_lockout_tries` (int64): Number of login tries within `user_lockout_within` hours before users are locked out
817
821
  * `user_lockout_within` (int64): Number of hours for user lockout window
@@ -381,6 +381,11 @@ module Files
381
381
  @attributes[:email]
382
382
  end
383
383
 
384
+ # boolean - Are FedRAMP security restrictions enabled for this site?
385
+ def fedramp
386
+ @attributes[:fedramp]
387
+ end
388
+
384
389
  # boolean - Is FTP enabled?
385
390
  def ftp_enabled
386
391
  @attributes[:ftp_enabled]
@@ -1039,6 +1044,7 @@ module Files
1039
1044
  # sftp_insecure_ciphers - boolean - If true, we will allow weak and known insecure ciphers to be used for SFTP connections. Enabling this setting severely weakens the security of your site and it is not recommend, except as a last resort for compatibility.
1040
1045
  # sftp_insecure_diffie_hellman - boolean - If true, we will allow weak Diffie Hellman parameters to be used within ciphers for SFTP that are otherwise on our secure list. This has the effect of making the cipher weaker than our normal threshold for security, but is required to support certain legacy or broken SSH and MFT clients. Enabling this weakens security, but not nearly as much as enabling the full `sftp_insecure_ciphers` option.
1041
1046
  # disable_files_certificate_generation - boolean - If set, Files.com will not set the CAA records required to generate future SSL certificates for this domain.
1047
+ # fedramp - boolean - Are FedRAMP security restrictions enabled for this site?
1042
1048
  # user_lockout - boolean - Will users be locked out after incorrect login attempts?
1043
1049
  # user_lockout_tries - int64 - Number of login tries within `user_lockout_within` hours before users are locked out
1044
1050
  # user_lockout_within - int64 - Number of hours for user lockout window
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.697"
4
+ VERSION = "1.1.698"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.697
4
+ version: 1.1.698
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-07-28 00:00:00.000000000 Z
11
+ date: 2026-07-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable