Matthew Peveler

Results 298 comments of Matthew Peveler

Since this comes to mind, one BC break contained in the typing PR was changing the values of a couple `MysqlAdapter::INT_*` values. I think it's just `INT_REGULAR` and `INT_BIG`, but...

At this point, I'd like to go ahead and just release 0.13.0 and not block on cakephp/migrations. Not having it be released and the primary branch to work from is...

The latest commit on 0.x has already gone out in a release, so it would now just be a matter of landing 0.next onto the 0.x branch, and then making...

I am (slowly) working on a changelog / migration guide on my local computer. I can migrate these to a draft release and work from there.

@dereuromark Please let me know what you think of https://github.com/cakephp/phinx/releases/tag/untagged-1e6e4f75442d6c939cf5.

@othercorey could this be re-opened?

I'm not sure how one would integrate this into Phinx. To use enums in PostgreSQL, you have to do `CREATE TYPE identifier AS ENUM ('value1', 'value2', 'value3', ...);` The example...

@othercorey can this be re-opened. It's annoying to do, but something phinx should probably support at some point.

The [relevant code](https://github.com/Tristan79/PyPDF2/blob/f23edb3acb3b7dc59bb7ebd0219d542beabf69a0/PyPDF2/pdf.py#L1366-L1374): ```python def getAttachment(self, name): for i in range (0, len(self.trailer["/Root"]["/Names"]["/EmbeddedFiles"]["/Names"]), 2): if self.trailer["/Root"]["/Names"]["/EmbeddedFiles"]["/Names"][i+1].getObject()["/F"]==name: return self.trailer["/Root"]["/Names"]["/EmbeddedFiles"]["/Names"][i+1].getObject()["/EF"]["/F"].getObject().getData() def listAttachments(self): for i in range (0, len(self.trailer["/Root"]["/Names"]["/EmbeddedFiles"]["/Names"]), 2): yield self.trailer["/Root"]["/Names"]["/EmbeddedFiles"]["/Names"][i+1].getObject()["/F"] ```

Looking at #95, I wonder if there's still any appetite to moving to a newer lower PHP version requirement? Reading the motivation and closing comment, I'd add that on moving...