{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":2019,"defaultBranch":"master","name":"warbler","ownerLogin":"jruby","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2008-03-01T18:46:46.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/55687?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1710807123.0","currentOid":""},"activityList":{"items":[{"before":"2868c4fa847499cd736eb7d93727d6d5980577aa","after":"3756c6cbbe2ecdccfeb6ac1658a0e3f657244e1b","ref":"refs/heads/master","pushedAt":"2024-04-30T11:23:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"olleolleolle","name":"Olle Jonsson","path":"/olleolleolle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/211?s=80&v=4"},"commit":{"message":"feat: Update README.rdoc to fix image link in RDOC","shortMessageHtmlLink":"feat: Update README.rdoc to fix image link in RDOC"}},{"before":"24386a865cf30af499839b5c5ad3fad53c54d28f","after":null,"ref":"refs/heads/dependabot/bundler/spec/rails4_stub/nokogiri-1.16.2","pushedAt":"2024-03-19T00:12:03.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"18c237450576ac74a9c15a2a9ca35860e092f9fb","ref":"refs/heads/dependabot/bundler/spec/rails4_stub/nokogiri-1.16.3","pushedAt":"2024-03-19T00:11:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump nokogiri from 1.14.3 to 1.16.3 in /spec/rails4_stub\n\nBumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.3 to 1.16.3.\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.14.3...v1.16.3)\n\n---\nupdated-dependencies:\n- dependency-name: nokogiri\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump nokogiri from 1.14.3 to 1.16.3 in /spec/rails4_stub"}},{"before":null,"after":"24386a865cf30af499839b5c5ad3fad53c54d28f","ref":"refs/heads/dependabot/bundler/spec/rails4_stub/nokogiri-1.16.2","pushedAt":"2024-02-06T03:31:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump nokogiri from 1.14.3 to 1.16.2 in /spec/rails4_stub\n\nBumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.3 to 1.16.2.\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.14.3...v1.16.2)\n\n---\nupdated-dependencies:\n- dependency-name: nokogiri\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump nokogiri from 1.14.3 to 1.16.2 in /spec/rails4_stub"}},{"before":"662d87e923044aefc75807a83b549db6d22fcd08","after":"2868c4fa847499cd736eb7d93727d6d5980577aa","ref":"refs/heads/master","pushedAt":"2023-11-10T15:06:05.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"olleolleolle","name":"Olle Jonsson","path":"/olleolleolle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/211?s=80&v=4"},"commit":{"message":"Resolve test failures on JRuby 9.4\n\n* TypeError: Cannot dup ENV, use ENV.to_h to get a copy of ENV as a hash\n* LoadError: no such file to load -- rexml/document","shortMessageHtmlLink":"Resolve test failures on JRuby 9.4"}},{"before":"a2276924ac8a643741df18d8f9900a5248fad353","after":"662d87e923044aefc75807a83b549db6d22fcd08","ref":"refs/heads/master","pushedAt":"2023-05-29T08:51:46.372Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kares","name":"Karol Bucek","path":"/kares","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/45967?s=80&v=4"},"commit":{"message":"Put public folders inside public for executable war (#538)\n\nWhen running `java -jar project.jar -S`, the extraction process:\r\n\r\n1. Creates a `tmp` folder, deleted on process exit\r\n2. Extracts files and folders from the `jar` to the `tmp` folder\r\n 1. The layout in `tmp` is different than that of the `war`\r\n 2. It's an attempt to pull back all the files and folders back in\r\n their original layout: how they were layed out before running\r\n `warble runnable war` at the root of the project.\r\n3. …\r\n\r\nThis patch addresses step 2.\r\n\r\nPreviously, only files at the root were pulled back to `/public`,\r\nleaving behind other directories at the root of `/tmp`.\r\n\r\nThis is an issue because of `Rails.public_path`.\r\n\r\nWhen running the `war` inside a web container like `tomcat`:\r\n\r\n `Rails.public_path` = `war` root\r\n\r\nWhen running the `war` with `java -jar`:\r\n\r\n `Rails.public_path` = `/tmp/jruby…extract/public`\r\n\r\nSo if you try to access resources from:\r\n\r\n `Rails.public_path / 'some' / 'nested' / 'path' / 'here.file'`\r\n\r\nYou're not going to find it because it's in:\r\n\r\n `Rails.root / 'some' / 'nested' / 'path' / 'here.file'`\r\n\r\nThis commit pulls back everything that is not `META-INF` back into\r\npublic.\r\n\r\nWhile this is —theoretically– the inverse operation of the bundling\r\nprocess, its soundness lives in code and not in data.\r\n\r\nThe optimal solution would be to bundle in the war a file listing all\r\ntransformations that happened and reversing them properly when needed\r\nfor `java -jar` execution.","shortMessageHtmlLink":"Put public folders inside public for executable war (#538)"}},{"before":"284407c27d4905beec6a43769ec389c8429b7698","after":null,"ref":"refs/heads/dependabot/bundler/spec/rails4_stub/nokogiri-1.14.3","pushedAt":"2023-04-13T14:55:35.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"441a99ad1dbc9cac7df2c2beca6a91f21ced60fa","after":"a2276924ac8a643741df18d8f9900a5248fad353","ref":"refs/heads/master","pushedAt":"2023-04-13T14:55:28.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"enebo","name":"Thomas E Enebo","path":"/enebo","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/19819?s=80&v=4"},"commit":{"message":"Merge pull request #540 from jruby/dependabot/bundler/spec/rails4_stub/nokogiri-1.14.3\n\nBump nokogiri from 1.14.0 to 1.14.3 in /spec/rails4_stub","shortMessageHtmlLink":"Merge pull request #540 from jruby/dependabot/bundler/spec/rails4_stu…"}},{"before":null,"after":"284407c27d4905beec6a43769ec389c8429b7698","ref":"refs/heads/dependabot/bundler/spec/rails4_stub/nokogiri-1.14.3","pushedAt":"2023-04-12T06:16:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump nokogiri from 1.14.0 to 1.14.3 in /spec/rails4_stub\n\nBumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.14.0 to 1.14.3.\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.14.0...v1.14.3)\n\n---\nupdated-dependencies:\n- dependency-name: nokogiri\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump nokogiri from 1.14.0 to 1.14.3 in /spec/rails4_stub"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEPexvIgA","startCursor":null,"endCursor":null}},"title":"Activity · jruby/warbler"}