Tietew

Results 12 issues of Tietew

## Issue report **Question 1: What is the problem?** `passenger_preload_bundler on;` does not work correctly with `passenger_env_var RUBYOPT something`. - What is the expected behavior? Our Rack application works normally....

### Reason for this change `IdentityPoolProviderUrl.userPool()` requires a string `url` currently. The description is "User Pool Provider Url". It should be ``` `${userPool.userPoolProviderName}:${userPoolClient.userPoolClientId}` ```. `UserPool` has an attribute `userPoolProviderUrl` which...

p2
pr/needs-community-review
valued-contributor
pr-linter/exemption-requested

## Example ``` ruby class Token def initialize(token) = @token = token def match?(other) = other == @token end ``` ### Passed expectation ``` ruby expect(Token.new('FOO')).to be_match('FOO') # calls Token.new('FOO').match?('FOO')...

When converting IPv4 to/from IPv6, `IPAddr#set` generates incorrect mask value. This causes `IPAddr#include?` returns incorrect result. ```ruby ip4 = IPAddr.new('::ffff:127.0.0.1').native p [ip4.to_s, ip4.prefix] ip6 = IPAddr.new('127.0.0.1').ipv4_mapped p [ip6.to_s, ip6.prefix] ```...

bug

### Reproducible code ``` ruby irb(main):001:0> require 'resolv' irb(main):002:0> Resolv::DNS.new.getresources('google.com', Resolv::DNS::Resource::IN::TXT) ``` ### Expected result: Returns TXT records (see below) ### Actual result: ``` .../resolv.rb:898:in `recv_reply': undefined method `unpack' for...

RuboCop suggests confusing solution on following code: ``` ruby files = Dir[Rails.root.join('path/*')] ``` ## Expected behavior RuboCop suggests to rewrite `Dir[Rails.root.join(...)]` to `Rails.root.glob(...)` as autocorrection does. ## Actual behavior RuboCop...

### Issue # (if applicable) Closes #34673. ### Reason for this change Route53 supports SVCB and HTTPS resource records and CDK also supports via `route53.RecordType.SVCB` and `route53.RecordType.HTTPS`. https://aws.amazon.com/about-aws/whats-new/2024/10/amazon-route-53-https-sshfp-svcb-tlsa-dns-support/ It's useful...

p2
feature-request
pr/needs-community-review
effort/medium
distinguished-contributor

### Describe the feature Amazon Data Firehose supports to configure the time zone of timestamps in S3 prefixes. For details, see https://docs.aws.amazon.com/firehose/latest/dev/s3-prefixes.html#timestamp-namespace ### Use Case It's useful to partition local...

feature-request
effort/small
@aws-cdk/aws-kinesisfirehose
p3

### Issue # (if applicable) Closes #34737. ### Reason for this change Amazon Data Firehose supports to configure the time zone of timestamps in S3 object prefix. For details, see...

p2
feature-request
pr/needs-community-review
distinguished-contributor

### Issue # (if applicable) Closes #28740. ### Reason for this change Enables dynamic partitioning with inline parsing or Lambda function. https://docs.aws.amazon.com/firehose/latest/dev/dynamic-partitioning.html ### Description of changes - Added `dynamicPartitioning` prop...

p2
feature-request
effort/medium
star-contributor